Upgrade turbo to v2 (#6) #24
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: Code Quality Checks | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- uses: oven-sh/setup-bun@v1 | |
- name: Install dependencies | |
run: bun install | |
- name: Run tests | |
run: corepack enable && bun run test | |
- name: Run lints | |
run: bun run lint | |
- name: Run type-checks | |
run: bun run type-check | |
- name: Check formatting | |
run: bun run format:check |