Skip to content

Bump actions/checkout from 6.0.2 to 6.0.3 (#2529) #3090

Bump actions/checkout from 6.0.2 to 6.0.3 (#2529)

Bump actions/checkout from 6.0.2 to 6.0.3 (#2529) #3090

Workflow file for this run

name: build
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
test:
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [22.x, 24.x, 26.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
# Use separate run commands so command status handled correctly on Windows
- name: npm install
run: npm ci
- name: npm test
run: npm test
- name: npm run check
run: npm run check