Skip to content

Commit

Permalink
fix: prefer using cached deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Apr 12, 2023
1 parent 051b187 commit 0cad050
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: Clean Install
run: npm ci
- name: Install Deps
run: npm i --prefer-offline --no-audit --progress=false

- name: Test
run: npm test -- --run
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

- name: Clean Install
run: npm ci
- name: Install Deps
run: npm i --prefer-offline --no-audit --progress=false

- name: Sign Firefox Extension
run: npm run sign -- --api-secret ${{secrets.FIREFOX_TOKEN}}

0 comments on commit 0cad050

Please sign in to comment.