Bump actions/setup-node from 4 to 6 #374
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: Node.js CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main, release ] | |
| permissions: {} | |
| jobs: | |
| build: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Verify npm all runs and build output matches | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| - run: npm ci | |
| - run: npm run all |