Skip to content

Commit

Permalink
feat(ci): add lint and typecheck steps to CI
Browse files Browse the repository at this point in the history
This commit adds two new steps to the GitHub Actions CI workflow:
- `bun run lint` for linting the code
- `bun run typecheck` for type checking

These steps will help ensure code quality and correctness.
  • Loading branch information
ryoppippi committed Aug 3, 2024
1 parent 14cb5c6 commit 404a3dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun i --frozen-lockfile
- run: bun run prepare
- run: bun run lint
- run: bun run typecheck
- run: bun run test

0 comments on commit 404a3dd

Please sign in to comment.