ci: bump Node.js matrix from 22.x to 24.x (current Active LTS) #24
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: NodeJS with Grunt | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [24.x] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: npm install --dev | |
| - name: Test | |
| run: npm run test:unit | |
| - name: Build | |
| run: npm run bundle | |
| - name: Push artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: build | |
| path: ./query-params-conditional-visibility.zip |