Skip to content

Commit

Permalink
fix: add CI lints
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed Mar 6, 2024
1 parent c234865 commit c6051d8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
code_checks:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: yarn

- name: Prettier
run: npm run prettier

- name: ESLint
run: npm run lint

0 comments on commit c6051d8

Please sign in to comment.