Skip to content

chore: make tests OS agnostic #1246

chore: make tests OS agnostic

chore: make tests OS agnostic #1246

Workflow file for this run

on:
push:
branches: [main, next, v1]
pull_request:
branches: [main, next, v1]
jobs:
e2e:
name: E2E Tests
timeout-minutes: 60
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: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
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