Skip to content

Commit d577ba6

Browse files
committed
ci: install zip on Linux and make artifact checks non-fatal when absent
1 parent cb6e2dc commit d577ba6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/quality.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ jobs:
2323
run: |
2424
npm ci
2525
26+
- name: Ensure zip/unzip utilities are available (Ubuntu)
27+
if: runner.os == 'Linux'
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y zip unzip
31+
2632
- name: Validate project (structure, files, outputs)
2733
run: |
2834
node scripts/validate.js

0 commit comments

Comments
 (0)