Skip to content

Commit

Permalink
feat(ci): check merging works
Browse files Browse the repository at this point in the history
  • Loading branch information
deemp committed Mar 30, 2024
1 parent ac8afce commit 982f2b5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,14 @@ jobs:
purge-created: 0
# except the version with the `primary-key`, if it exists
purge-primary-key: never

- name: Install nixpkgs#bun
if: ${{ matrix.id == 1 }}
run: nix profile install nixpkgs#bun

- name: Install nixpkgs#nodejs
if: ${{ matrix.id == 2 }}
run: nix profile install nixpkgs#nodejs

# Merge similar individual `id` caches
# Purge individual caches and old `common` caches
Expand Down Expand Up @@ -160,6 +168,12 @@ jobs:
purge-created: 0
# except the version with the `primary-key`, if it exists
purge-primary-key: never

- name: Run node
run: node --version

- name: Run bun
run: bun --version

compare-run-times:
name: Job with caching
Expand Down

0 comments on commit 982f2b5

Please sign in to comment.