chore: make tests OS agnostic #1267
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
on: | |
push: | |
branches: [main, next, v1] | |
pull_request: | |
branches: [main, next, v1] | |
jobs: | |
e2e: | |
name: E2E Tests | |
timeout-minutes: 60 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
browser: [chromium, firefox, webkit] | |
node: [18, 20, 22] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: pnpm i | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps ${{ matrix.browser }} | |
- name: Run Playwright tests | |
run: pnpm exec playwright test --project=${{ matrix.browser }}" | |
- name: Upload report to GitHub Actions Artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: playwright-report-${{ matrix.os }} | |
path: playwright-report/ | |
retention-days: 14 | |
unit: | |
name: API Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: pnpm i | |
- name: Run Vitest tests | |
run: pnpm exec vitest | |
- name: Run Typecheck | |
run: pnpm -r run typecheck |