Skip to content

Commit that shit v2 #30

Commit that shit v2

Commit that shit v2 #30

name: Lint, Typecheck, Format & Test
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up PNPM
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run TypeScript typecheck
run: pnpm run typecheck
- name: Run ESLint
run: pnpm run lint
- name: Check formatting with Prettier
run: pnpm run format:check
- name: Run tests
run: pnpm run test