Skip to content

ci: pin actions version with commit #143

ci: pin actions version with commit

ci: pin actions version with commit #143

Workflow file for this run

name: validate
on: [push, pull_request]
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '22', '24', '25' ]
name: Node ${{ matrix.node }} test
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run build
run: npm run build
- name: Run test
run: npm run test