Skip to content

Commit

Permalink
fix npm install in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulTandon1 committed Apr 25, 2024
1 parent ac17332 commit 5231861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: npm

- name: Install dependencies
run: npm clean install
run: npm ci # clean install
- name: Build website
run: npm run build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
cache: npm

- name: Install dependencies
run: npm clean install
run: npm ci # clean install
- name: Test build website
run: npm run build

0 comments on commit 5231861

Please sign in to comment.