ci: Remove unnecessary ${{ }}

This commit is contained in:
Jonas Platte
2022-03-03 18:26:35 +01:00
parent e136199bfd
commit ed7667dc8d
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ jobs:
args: --no-deps --workspace --features docsrs -Zrustdoc-map
- name: Deploy docs
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -156,14 +156,14 @@ jobs:
emcc -v
- name: Default wasm-pack tests
if: ${{ !matrix.cmd }}
if: '!matrix.cmd'
run: |
cd crates/${{matrix.base_dir}}
wasm-pack test --node -- ${{ matrix.cargo_args }}
wasm-pack test --firefox --headless -- ${{ matrix.cargo_args }}
- name: Testing with custom command
if: ${{ matrix.cmd }}
if: matrix.cmd
run: |
cd crates/${{matrix.base_dir}}
${{matrix.cmd}}