Skip to content

feat(playwright): setup #14

feat(playwright): setup

feat(playwright): setup #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
setup:
uses: ./github/workflows/setup-workspace.yaml

Check failure on line 11 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

invalid value workflow reference: no version specified
linting:
name: Run Linting, Formatting, and Typecheck
runs-on: ubuntu-latest
needs: setup
steps:
- uses: ./.github/actions/setup-job
- name: Lint Check
run: pnpm run lint
- name: Format Check
run: pnpm run format:verify
- name: Typecheck
run: pnpm run typecheck
Tests:
name: Run Unit Tests
runs-on: ubuntu-latest
needs: setup
steps:
- uses: ./.github/actions/setup-job
- name: Unit Tests
run: pnpm run test