Skip to content

Commit

Permalink
chore: Update npm dependencies and clean npm cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun-Murakami committed Jul 5, 2024
1 parent 1a439c2 commit bffab41
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Clean npm cache
- name: Clean npm cache and remove lock file
run: |
rm -rf node_modules
npm cache clean --force
- run: npm install
rm -rf node_modules
rm -f package-lock.json
- name: Install Dependencies
run: npm install
- run: npm run build
env:
VITE_API_KEY: ${{ secrets.VITE_API_KEY_PROD }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/firebase-hosting-test-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Clean npm cache
- name: Clean npm cache and remove lock file
run: |
rm -rf node_modules
npm cache clean --force
- run: npm install
rm -rf node_modules
rm -f package-lock.json
- name: Install Dependencies
run: npm install
- run: npm run build
env:
VITE_API_KEY: ${{ secrets.VITE_API_KEY }}
Expand Down

0 comments on commit bffab41

Please sign in to comment.