Skip to content

Commit 18a2211

Browse files
fix: download all platform artifacts in CI test job
1 parent d7bf9e3 commit 18a2211

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,11 @@ jobs:
129129
node-version: 18
130130
cache: npm
131131

132-
- name: Download artifacts
132+
- name: Download all artifacts
133133
uses: actions/download-artifact@v4
134134
with:
135-
name: bindings-${{ matrix.target }}
136-
137-
- name: Install dependencies
138-
run: npm install
135+
pattern: bindings-*
136+
merge-multiple: true
139137

140138
- name: Copy binaries to src for testing
141139
run: |
@@ -148,6 +146,9 @@ jobs:
148146
find "libs/core/src" -type f -name "*.node" | sort
149147
shell: bash
150148

149+
- name: Install dependencies
150+
run: npm install
151+
151152
- name: Test
152153
run: npm test
153154

0 commit comments

Comments
 (0)