chore(deps): update wasm-bindgen #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Diesel WASM Backend | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# only run tests when related changes are made | |
paths: | |
- ".github/workflows/test.yml" | |
- "src/**" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
- "rust-toolchain" | |
jobs: | |
test: | |
name: Test | |
# running with macos since it contains the safari driver | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: brew install --cask firefox | |
- name: Update rust toolchains | |
run: rustup update | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Setup node and yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
cache-dependency-path: "./yarn.lock" | |
cache: "yarn" | |
env: | |
SKIP_YARN_COREPACK_CHECK: "1" | |
- name: Enable corepack | |
run: corepack enable | |
- name: Run Yarn install | |
uses: borales/actions-yarn@v5 | |
with: | |
cmd: --cwd ./ install | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
. | |
- run: cargo build --target wasm32-unknown-unknown --tests --features unsafe-debug-query | |
- run: wasm-pack test --headless --chrome --features unsafe-debug-query | |
working-directory: ./ | |
- run: wasm-pack test --headless --firefox --features unsafe-debug-query | |
working-directory: ./ |