Skip to content

Commit

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

on:
push:

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: oven-sh/setup-bun@v2
- name: Install modules
run: bun install
- name: Run Prettier and ESLint checks
run: bun lint

0 comments on commit e8cfb40

Please sign in to comment.