CI: run tests also on macOS and Windows #244
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
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
tests: | ||
name: Tests | ||
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', 'window.latest'] | ||
runs-on: ${{ matrix.runner }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Install dependencies | ||
run: npm ci | ||
- run: npm run lint | ||
- run: npm run test-type-definitions | ||
- name: Install Chrome | ||
run: npx playwright install --with-deps chromium | ||
- name: Install Firefox | ||
run: npx playwright install --with-deps firefox | ||
- name: Install Webkit | ||
run: npx playwright install --with-deps webkit | ||
- name: Run tests | ||
run: npm test |