Skip to content

Bump to v3.17.19

Bump to v3.17.19 #137

Workflow file for this run

# 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