Skip to content

Commit

Permalink
chore: add linting as a step on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesLMilner committed Dec 23, 2023
1 parent 05c00d9 commit 04dfadd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ on:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install Parent Folder
run: npm run lint

build:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 04dfadd

Please sign in to comment.