Skip to content

feat: ssg support through seeding the incremental cache #67

feat: ssg support through seeding the incremental cache

feat: ssg support through seeding the incremental cache #67

Workflow file for this run

name: Code checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
checks:
name: ${{ matrix.script }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
script: ["prettier:check", "lint:check", "ts:check", "test"]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: ${{ matrix.script }}
run: pnpm run ${{ matrix.script }}