Skip to content

feat/ci: use immutable commit hash for actions instead of tags #282

feat/ci: use immutable commit hash for actions instead of tags

feat/ci: use immutable commit hash for actions instead of tags #282

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Test
run: npm run test
- name: Build
run: npm run build