Skip to content

Commit

Permalink
ci: run linter, type-checker, and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
imcatwhocode committed Dec 18, 2024
1 parent b588de9 commit 657d21b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test
on:
push

jobs:
test:
name: Perform checks
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun lint
- run: bun test
- run: bun run typecheck

0 comments on commit 657d21b

Please sign in to comment.