Skip to content

Pin GitHub Actions to commit SHAs #252

Pin GitHub Actions to commit SHAs

Pin GitHub Actions to commit SHAs #252

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
- 'releases/*'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5.1.0
- name: setup node
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version-file: .node-version
cache: 'npm'
- name: install dependencies
run: npm ci
- name: test
run: npm run ci-test