Skip to content

Commit cccdcb3

Browse files
committed
fix(ci): install programs before running them
1 parent e6f07d4 commit cccdcb3

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/ci.yaml

+11-2
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,21 @@ jobs:
173173
# except the version with the `primary-key`, if it exists
174174
purge-primary-key: never
175175

176-
- name: Run node
177-
run: node --version
176+
- name: Pin nixpkgs
177+
run: ${{ env.pin_nixpkgs }}
178+
179+
- name: Install nixpkgs#poetry
180+
run: nix profile install nixpkgs#poetry
181+
182+
- name: Install nixpkgs#nodejs
183+
run: nix profile install nixpkgs#nodejs
178184

179185
- name: Run poetry
180186
run: poetry --version
181187

188+
- name: Run node
189+
run: node --version
190+
182191
compare-run-times:
183192
name: Job with caching
184193
needs: merge-similar-caches

0 commit comments

Comments
 (0)