Skip to content

Commit

Permalink
Fix path to package-lock.json in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
theacodes committed Feb 6, 2024
1 parent 22a0806 commit d779a27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "client/package-lock.json"
cache-dependency-path: "package-lock.json"
- run: npm ci
working-directory: client
- run: npm run lint:eslint
Expand All @@ -32,7 +32,7 @@ jobs:
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "client/package-lock.json"
cache-dependency-path: "package-lock.json"
- run: npm ci
working-directory: client
- run: npm run build
Expand Down

0 comments on commit d779a27

Please sign in to comment.