Skip to content

Adds type and lint checks to CI #3

Adds type and lint checks to CI

Adds type and lint checks to CI #3

Workflow file for this run

name: 🔍 Lint / Type Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: TypeScript check
run: pnpm check:types
- name: ESLint check
run: pnpm check:lint