Skip to content

Commit

Permalink
fix: Cache JS deps & setup wasm32 target in action
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Mar 1, 2024
1 parent 1d88a2c commit 954bdce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests_and_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,19 @@ jobs:
- name: Cache Project
uses: Swatinem/rust-cache@v2

- name: Cache Project (JavaScript)
uses: actions/setup-node@v4
with:
node-version: '18.x'

- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
override: true
toolchain: stable

- name: Setup WebAssembly Toolchain
run: rustup target add wasm32-unknown-unknown

- name: Run Playwright tests
run: npm test

0 comments on commit 954bdce

Please sign in to comment.