Skip to content

Linter fixes and edit page too aggressive cache fix #56

Linter fixes and edit page too aggressive cache fix

Linter fixes and edit page too aggressive cache fix #56

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- development
workflow_dispatch: # Allows manual triggering
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
- run: pnpm install
- run: pnpm lint
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
- run: pnpm install
- run: pnpm check-types
build:
name: Build
needs: [lint, typecheck]
if: github.ref == 'refs/heads/main' || github.event.pull_request.base.ref == 'main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
- run: pnpm install
- run: pnpm build