We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7bf9e3 commit 18a2211Copy full SHA for 18a2211
.github/workflows/CI.yml
@@ -129,13 +129,11 @@ jobs:
129
node-version: 18
130
cache: npm
131
132
- - name: Download artifacts
+ - name: Download all artifacts
133
uses: actions/download-artifact@v4
134
with:
135
- name: bindings-${{ matrix.target }}
136
-
137
- - name: Install dependencies
138
- run: npm install
+ pattern: bindings-*
+ merge-multiple: true
139
140
- name: Copy binaries to src for testing
141
run: |
@@ -148,6 +146,9 @@ jobs:
148
146
find "libs/core/src" -type f -name "*.node" | sort
149
147
shell: bash
150
+ - name: Install dependencies
+ run: npm install
151
+
152
- name: Test
153
run: npm test
154
0 commit comments