Skip to content

E2E testing

E2E testing #87

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm & install
uses: wyvox/action-setup-pnpm@v3
with:
node-version: 22
- name: Run type checking and formatting
run: pnpm run check
- name: Run unit tests
run: pnpm run test:unit
- name: Build
run: pnpm build
- name: Run E2E tests
run: cd test && pnpm install && pnpm test