mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-02-18 15:27:31 -05:00
ci: Remove unnecessary ${{ }}
This commit is contained in:
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
@@ -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 }}
|
||||
|
||||
4
.github/workflows/wasm.yml
vendored
4
.github/workflows/wasm.yml
vendored
@@ -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}}
|
||||
|
||||
Reference in New Issue
Block a user