Skip to content

Fix CI dependency graph #13

Fix CI dependency graph

Fix CI dependency graph #13

Workflow file for this run

name: CI
on: push
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
check: [typecheck, ci:lint, test]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
cache-dependency-path: pnpm-lock.yaml
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run ${{ matrix.check }}