Skip to content

chore: ignore build and tooling artefacts #1

chore: ignore build and tooling artefacts

chore: ignore build and tooling artefacts #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Lint + typecheck + build + test
run: pnpm lint && pnpm check && pnpm build && pnpm test