Skip to content

Commit

Permalink
Break out the run all steps into individuals
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Apr 12, 2024
1 parent 604b4f9 commit 92a103f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,16 @@ jobs:
run: |
nix develop --command shellcheck ./.github/workflows/cache-test.sh
- uses: DeterminateSystems/nix-installer-action@main
- run: nix develop --command pnpm install
- run: nix develop --command pnpm run all
- name: Install pnpm dependencies
run: nix develop --command pnpm install
- name: Check formatting
run: nix develop --command pnpm run format
- name: Lint
run: nix develop --command pnpm run lint
- name: Build
run: nix develop --command pnpm run build
- name: Package
run: nix develop --command pnpm run package
- run: git status --porcelain=v1
- run: test $(git status --porcelain=v1 2>/dev/null | wc -l) -eq 0

Expand Down

0 comments on commit 92a103f

Please sign in to comment.