Skip to content

Commit 982f2b5

Browse files
committed
feat(ci): check merging works
1 parent ac8afce commit 982f2b5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,14 @@ jobs:
116116
purge-created: 0
117117
# except the version with the `primary-key`, if it exists
118118
purge-primary-key: never
119+
120+
- name: Install nixpkgs#bun
121+
if: ${{ matrix.id == 1 }}
122+
run: nix profile install nixpkgs#bun
123+
124+
- name: Install nixpkgs#nodejs
125+
if: ${{ matrix.id == 2 }}
126+
run: nix profile install nixpkgs#nodejs
119127

120128
# Merge similar individual `id` caches
121129
# Purge individual caches and old `common` caches
@@ -160,6 +168,12 @@ jobs:
160168
purge-created: 0
161169
# except the version with the `primary-key`, if it exists
162170
purge-primary-key: never
171+
172+
- name: Run node
173+
run: node --version
174+
175+
- name: Run bun
176+
run: bun --version
163177

164178
compare-run-times:
165179
name: Job with caching

0 commit comments

Comments
 (0)