Fix build errors #1505
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔍 Lint / Type Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install tools & dependencies | |
uses: ./.github/actions/install | |
- name: Generate virtual modules | |
run: pnpm sync | |
- name: TypeScript check | |
run: pnpm check:types | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install tools & dependencies | |
uses: ./.github/actions/install | |
- name: Lint code | |
run: pnpm check:lint |