Incorporate GITHUB_JOB into the various hashes that are intended to be per-job #55
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
checks: | |
name: Run all checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Install pnpm dependencies | |
run: nix develop --command pnpm install | |
- name: Check formatting | |
run: nix develop --command pnpm run check-fmt | |
- name: Run pre-build | |
run: nix develop --command pnpm run prebuild | |
- name: Lint | |
run: nix develop --command pnpm run lint | |
- name: Build | |
run: nix develop --command pnpm run build | |
- name: Check git status | |
run: git status --porcelain=v1 | |
- name: Ensure no staged changes | |
run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0 | |
# Docs are hosted on Netlify but we should get feedback on that here in Actions as well | |
- name: Build docs | |
run: | | |
rm -rf dist | |
nix develop --command pnpm run docs |