chore(deps): update dependency node to v24 #7636
Workflow file for this run
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: test-javascript | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - renovate/** | |
| paths: | |
| - javascript/** | |
| - .github/** | |
| - Makefile | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - javascript/** | |
| - .github/** | |
| - Makefile | |
| workflow_call: | |
| jobs: | |
| test-javascript: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| node-version: [22.x, 24.x] | |
| include: | |
| - os: windows-latest | |
| node-version: 22.x | |
| - os: macos-latest | |
| node-version: 22.x | |
| steps: | |
| - name: set git core.autocrlf to 'input' | |
| run: git config --global core.autocrlf input | |
| - uses: actions/checkout@v5 | |
| - name: with Node.js ${{ matrix.node-version }} on ${{ matrix.os }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| working-directory: javascript | |
| - run: npm run build | |
| working-directory: javascript | |
| - run: npm run lint | |
| working-directory: javascript | |
| - run: npm test | |
| working-directory: javascript | |
| test-acceptance: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mcr.microsoft.com/playwright:v1.56.1-jammy | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22.x, 24.x] | |
| steps: | |
| - name: set git core.autocrlf to 'input' | |
| run: git config --global core.autocrlf input | |
| - uses: actions/checkout@v5 | |
| - name: with Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| working-directory: javascript | |
| - run: npm run build | |
| working-directory: javascript | |
| - name: Acceptance tests | |
| working-directory: javascript | |
| run: npm run acceptance |