nix-evaluator-stats/.github/workflows/check.yml
NotAShelf 812b16e414
ci: fix check and deploy workflows
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ib9590566fe1a41f64316f5ab56957b116a6a6964
2026-04-09 08:33:21 +03:00

33 lines
612 B
YAML

name: Check
on:
pull_request:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
version: 10
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Build core packages
run: pnpm -r --filter '!@ns/web' build
- run: pnpm run check
- run: pnpm run lint
- run: pnpm run fmt --check