Skip to content

Pin GitHub Actions to commit SHAs #16

Pin GitHub Actions to commit SHAs

Pin GitHub Actions to commit SHAs #16

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: app
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: app/package-lock.json
- run: npm ci
- name: TypeScript type check
run: npx tsc --noEmit