Skip to content

Commit

Permalink
fix dirs in ci lint
Browse files Browse the repository at this point in the history
  • Loading branch information
codeman1o1 committed Aug 14, 2024
1 parent aafee42 commit a386e3c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,20 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Node.js
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install Node dependencies
run: npm ci
run: |
cd website
npm ci
- name: Lint
run: npm run lint
run: |
cd website
npm run lint
super-linter:
name: Super-Linter
Expand Down

0 comments on commit a386e3c

Please sign in to comment.