chore(main): release javascript 0.4.10 #736
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: javascript-ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "javascript/**" | |
| - ".github/workflows/javascript-ci.yml" | |
| pull_request: | |
| paths: | |
| - "javascript/**" | |
| - ".github/workflows/javascript-ci.yml" | |
| workflow_dispatch: | |
| env: | |
| CI: true | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci-checks: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| steps: | |
| - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3 | |
| - uses: pnpm/action-setup@eae0cfeb286e66ffb5155f1a79b90583a127a68b # v2 | |
| with: | |
| version: 10.22.0 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3 | |
| with: | |
| cache-dependency-path: "javascript/pnpm-lock.yaml" | |
| node-version: ${{ matrix.node-version }} | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| working-directory: javascript | |
| # Covers typecheck | |
| - name: Build | |
| run: pnpm build:all | |
| working-directory: javascript | |
| - name: Lint | |
| run: pnpm lint:all | |
| working-directory: javascript | |
| - name: Type check | |
| run: pnpm typecheck:all | |
| working-directory: javascript | |
| - name: Tests | |
| run: pnpm run test:ci | |
| working-directory: javascript | |
| # Examples | |
| - name: Test (Examples) | |
| run: pnpm -F vitest-examples test | |
| env: | |
| LANGWATCH_API_KEY: ${{ secrets.LANGWATCH_API_KEY }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| working-directory: javascript |