Hint #289
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: Build | |
on: [push] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mskelton/setup-pnpm@v2 | |
- name: Lint | |
run: pnpm lint | |
- name: Check formatting | |
run: pnpm prettier --check . | |
ts: | |
name: Type Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mskelton/setup-pnpm@v2 | |
- name: Build | |
run: pnpm db:generate | |
- name: Type check | |
run: pnpm ts |