Skip to content

👷 (pr): Update PR CI workflow to include typechecks [no-issue] #224

👷 (pr): Update PR CI workflow to include typechecks [no-issue]

👷 (pr): Update PR CI workflow to include typechecks [no-issue] #224

Workflow file for this run

name: pull_request
on: [pull_request]
env:
FORCE_COLOR: "1"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
health-check:
runs-on: [device-sdk-4xlarge-linux]
steps:
- uses: actions/checkout@v3
- uses: ./actions/setup-toolchain-composite
- name: Lint
run: pnpm lint
- name: Prettier
run: pnpm prettier
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test