Finalize multi-runtime ManagedCode.Tps SDK #3
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: SDK JavaScript | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - "codex/**" | |
| paths: | |
| - "SDK/ts/**" | |
| - "SDK/js/**" | |
| - "SDK/fixtures/**" | |
| - "examples/**" | |
| - ".github/workflows/sdk-javascript.yml" | |
| - ".github/workflows/sdk-javascript-coverage.yml" | |
| pull_request: | |
| paths: | |
| - "SDK/ts/**" | |
| - "SDK/js/**" | |
| - "SDK/fixtures/**" | |
| - "examples/**" | |
| - ".github/workflows/sdk-javascript.yml" | |
| - ".github/workflows/sdk-javascript-coverage.yml" | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| name: Build And Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - run: npm ci --prefix SDK/js | |
| - run: npm --prefix SDK/js run build:tps | |
| - run: npm --prefix SDK/js run test:js |