Skip to content

Commit

Permalink
Update CI workflow: Do not re-install cached dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JackNoordhuis committed Dec 11, 2024
1 parent 23234da commit 8a9b9fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cache-dependency-path: 'package.json'

- name: Install dependencies
run: npm run clean-install
run: npm run clean

- name: Build alpine-typescript
run: npm run build-dist
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
cache-dependency-path: 'package.json'

- name: Install dependencies
run: npm run clean-install
run: npm run clean

- name: Build package example
run: npm run build-dist
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
cache: pnpm

- name: Install dependencies
run: npm run clean-install
run: npm run clean

- name: Build package example
run: npm run build-dist
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
cache-dependency-path: 'package.json'

- name: Install dependencies
run: pnpm run clean-install
run: pnpm run clean

- name: Build alpine-typescript
run: pnpm run build-dist
Expand Down

0 comments on commit 8a9b9fe

Please sign in to comment.