Skip to content

Commit

Permalink
fix config errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcath committed Mar 10, 2023
1 parent 55a9ba1 commit f4fc644
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ jobs:
- name: 💾 Cache Node Modules
id: node-cache
uses: actions/cache@v3
path: /node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
with:
path: /node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}

- name: 📥 Download deps
if: steps.node-cache.outputs.cache-hit != 'true'
Expand All @@ -49,8 +50,9 @@ jobs:
- name: 💾 Cache Node Modules
id: node-cache
uses: actions/cache@v3
path: /node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}
with:
path: /node_modules
key: node-modules-${{ hashFiles('package-lock.json') }}

- name: 🧼 Lint
run: npm run lint
Expand Down

0 comments on commit f4fc644

Please sign in to comment.