Skip to content

chore: bump dev deps (vitest, eslint, prettier, typescript-eslint) #22

chore: bump dev deps (vitest, eslint, prettier, typescript-eslint)

chore: bump dev deps (vitest, eslint, prettier, typescript-eslint) #22

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
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: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
# BKG/ESA are intermittently unreachable from GitHub runners; the
# fetch script skips existing files, so a cache hit is a no-op.
- name: Cache test fixtures
uses: actions/cache@v4
with:
path: test-fixtures
key: test-data-${{ hashFiles('scripts/fetch-test-data.sh') }}
restore-keys: |
test-data-
- run: bash scripts/fetch-test-data.sh
- run: pnpm run lint
- run: npx tsc --noEmit
- run: pnpm test
- run: pnpm run build