Skip to content

Commit

Permalink
fix(ci): re-install dependencies on Compare workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nogic1008 committed Apr 3, 2023
1 parent 329557c commit f7f8221
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/compare-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: 16
cache: npm
- name: Install dependencies
- name: Install PR branch dependencies
run: npm ci
- name: Build on PR branch
run: npm run build -- -o current
Expand All @@ -30,6 +30,8 @@ jobs:
with:
ref: main
clean: false
- name: Install main branch dependencies
run: npm ci
- name: Build on main branch
run: npm run build
- name: Setup js-beautify to compare minified js files
Expand Down

0 comments on commit f7f8221

Please sign in to comment.