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 45d42dc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint Code
on: push
jobs:
lint:
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 45d42dc

Please sign in to comment.