Skip to content

Commit

Permalink
CI: run tests also on macOS and Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
larabr committed Oct 24, 2024
1 parent 1a65851 commit d449e8b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ on:
jobs:
tests:
name: Tests
runs-on: ubuntu-latest

strategy:
fail-fast: false # if tests for one version fail, continue with the rest
matrix:
# run on all main platforms to test platform-specific code, if present
# (e.g. webkit's WebCrypto API implementation is different in macOS vs Linux)
runner: ['ubuntu-latest', 'macos-latest', 'windows-latest']
runs-on: ${{ matrix.runner }}

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit d449e8b

Please sign in to comment.