Skip to content

Check

Check #5120

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
merge_group:
workflow_run:
workflows:
- "Update GraphQL Schema"
types:
- completed
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version-file: .node-version
cache: pnpm
- run: pnpm install
- run: pnpm run lint:prettier
- run: pnpm run lint:eslint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version-file: .node-version
cache: pnpm
- run: pnpm install
- run: pnpm run codegen
- run: pnpm run typecheck
- run: pnpm run test