Skip to content

Commit

Permalink
WIP: Try Automating Code Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ITenthusiasm committed Jan 2, 2024
1 parent ebfa731 commit 94dd3ad
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Lint Code
on: push
jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@4
- uses: actions/setup-node@4
with:
node-version: 18
cache: "npm"
- name: "Install Dependencies"
run: npm ci
- name: "Lint Everything (split this out?)"
run: npm run lint

0 comments on commit 94dd3ad

Please sign in to comment.