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 4e6b80d commit 193a5edCopy full SHA for 193a5ed
.github/workflows/wasm.yml
@@ -156,14 +156,14 @@ jobs:
156
emcc -v
157
158
- name: Default wasm-pack tests
159
- if: !matrix.cmd
+ if: ${{ !matrix.cmd }}
160
run: |
161
cd crates/${{matrix.base_dir}}
162
wasm-pack test --node -- ${{ matrix.cargo_args }}
163
wasm-pack test --firefox --headless -- ${{ matrix.cargo_args }}
164
165
- name: Testing with custom command
166
- if: matrix.cmd
+ if: ${{ matrix.cmd }}
167
168
169
${{matrix.cmd}}
0 commit comments