Skip to content

chore!: bun -> pnpm+vitest && manage deps with flake.nix #5

chore!: bun -> pnpm+vitest && manage deps with flake.nix

chore!: bun -> pnpm+vitest && manage deps with flake.nix #5

Workflow file for this run

name: Lint & Type Check
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Nix
uses: ./.github/actions/setup-nix
- name: Run Lint
run: nix develop --command pnpm run lint
- name: Run Type Check
run: nix develop --command pnpm run typecheck
- name: Run Build
run: nix develop --command pnpm run build