Bump to v3.17.19 #137
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
| # This workflow validates pull requests by checking out the code, linting, building, and testing. | |
| name: Pull Request Validation | |
| on: [pull_request] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check for formatting and linting errors | |
| run: npm run check | |
| - name: Run build | |
| run: npm run build | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| - name: Run the tests | |
| run: npm run test -- --coverage |