Skip to content

Commit

Permalink
ci: add code format check
Browse files Browse the repository at this point in the history
  • Loading branch information
deansallinen committed Sep 16, 2024
1 parent 900bc7d commit 003cc20
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Code Checks

on:
push:

jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun lint

0 comments on commit 003cc20

Please sign in to comment.