mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-26 09:20:35 +01:00
Break out the run all steps into individuals
This commit is contained in:
parent
604b4f9ad2
commit
92a103f45f
1 changed files with 10 additions and 2 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue