Skip to content

Commit

Permalink
Merge pull request #142 from greymass/github-actions
Browse files Browse the repository at this point in the history
ci: add code format check gh action
  • Loading branch information
aaroncox authored Sep 16, 2024
2 parents 900bc7d + 003cc20 commit 728bf23
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 728bf23

Please sign in to comment.