Skip to content

Pin GitHub Actions by SHA and add them to Dependabot #14

Pin GitHub Actions by SHA and add them to Dependabot

Pin GitHub Actions by SHA and add them to Dependabot #14

Workflow file for this run

name: Quality Check
on:
pull_request:
push:
branches: [main]
workflow_call:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- name: Set Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm check-types
- name: Tests
run: pnpm test