Skip to content

Commit

Permalink
Removing package lock json
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-uros committed Jul 23, 2024
1 parent 4edd3d6 commit 7e15e12
Show file tree
Hide file tree
Showing 3 changed files with 592 additions and 55 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ jobs:
with:
python-version: '3.11'

- name: Clear npm cache
run: npm cache clean --force

- name: Remove node_modules and package-lock.json
run: |
if [ -d "node_modules" ]; then rm -rf node_modules; fi
if [ -f "package-lock.json" ]; then rm package-lock.json; fi
shell: bash

- name: Install dependencies
run: npm ci

Expand Down
Loading

0 comments on commit 7e15e12

Please sign in to comment.