Skip to content

♻️ Migrate to PNPM workspaces + Biomejs + Vitest #55

♻️ Migrate to PNPM workspaces + Biomejs + Vitest

♻️ Migrate to PNPM workspaces + Biomejs + Vitest #55

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Oxlint
run: pnpm dlx oxlint@latest
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test