Skip to content

Commit

Permalink
fix(ci): added missing step to install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowplay1 committed Oct 29, 2023
1 parent 43c28d0 commit 13ba822
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Check the source code for linting issues
name: Check the code for linting issues

on:
workflow_dispatch:
Expand All @@ -16,5 +16,8 @@ jobs:
with:
node-version: 16

- name: Check the source code for linting issues
- name: Install dependencies
run: npm ci

- name: Check the code for linting issues
run: bash ./scripts/lint.sh

0 comments on commit 13ba822

Please sign in to comment.