We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08cff9 commit f928c24Copy full SHA for f928c24
.github/workflows/main.yml
@@ -209,13 +209,15 @@ jobs:
209
npm run test:${{matrix.build-type}}
210
211
test-example:
212
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
213
needs:
214
- build
215
strategy:
216
matrix:
217
node-version:
218
- '24.10.0'
219
+ os:
220
+ - ubuntu-latest
221
steps:
222
- uses: actions/checkout@v4
223
@@ -234,7 +236,7 @@ jobs:
234
236
uses: actions/cache/restore@v4
235
237
id: splicer-build
238
with:
- key: splicer-${{ hashFiles('Cargo.lock', 'crates/spidermonkey-embedding-splicer/src/**/*.rs') }}
239
+ key: splicer-${{ matrix.os }}-${{ hashFiles('Cargo.lock', 'crates/spidermonkey-embedding-splicer/src/**/*.rs') }}
240
path: |
241
lib
242
target
0 commit comments