Skip to content

run on feature branch #16

run on feature branch

run on feature branch #16

Workflow file for this run

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

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: references to workflows must be rooted in '.github/workflows'
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