Skip to content

Commit

Permalink
chore: add e2e tests to the GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelmmiguel committed Oct 6, 2023
1 parent 5c853db commit 5516310
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ jobs:
run: cargo fmt --check
- name: Clippy
run: cargo clippy -- -D warnings
test:
build:
name: Build and test
env:
E2E_MAX_WAITING_TIME: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -42,11 +45,7 @@ jobs:
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build wws on release mode
run: cargo build --verbose --release
- name: Test
run: cargo test --workspace --exclude wasm-workers-quick-js-engine
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
run: cargo test --workspace --exclude wasm-workers-quick-js-engine -- --show-output

0 comments on commit 5516310

Please sign in to comment.