Skip to content

Commit

Permalink
Fixed CI
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanNaum committed Feb 26, 2024
1 parent 3ca5414 commit bb29554
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm ci
run: |
if [ -e package-lock.json ]; then
npm ci
else
npm i
fi

- name: Run lint
run: npm run style:all

0 comments on commit bb29554

Please sign in to comment.