Skip to content

Commit 3534d8a

Browse files
committed
fix: Add dependency path
1 parent 46b89ff commit 3534d8a

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

.github/workflows/deploy-dev-with-restart.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2222
with:
2323
cache: 'pnpm'
24+
cache-dependency-path: 'pnpm-lock.yaml'
2425
node-version-file: '.nvmrc'
2526
- name: Disable Husky
2627
run: echo "HUSKY=0" >> $GITHUB_ENV

.github/workflows/deploy-dev.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2525
with:
2626
cache: 'pnpm'
27+
cache-dependency-path: 'pnpm-lock.yaml'
2728
node-version-file: '.nvmrc'
2829
- name: Disable Husky
2930
run: echo "HUSKY=0" >> $GITHUB_ENV

.github/workflows/deploy-prod-with-restart.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2222
with:
2323
cache: 'pnpm'
24+
cache-dependency-path: 'pnpm-lock.yaml'
2425
node-version-file: '.nvmrc'
2526
- name: Disable Husky
2627
run: echo "HUSKY=0" >> $GITHUB_ENV

.github/workflows/deploy-prod.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2424
with:
2525
cache: 'pnpm'
26+
cache-dependency-path: 'pnpm-lock.yaml'
2627
node-version-file: '.nvmrc'
2728
- name: Disable Husky
2829
run: echo "HUSKY=0" >> $GITHUB_ENV

.github/workflows/deploy-stage-with-restart.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
2424
with:
2525
cache: 'pnpm'
26+
cache-dependency-path: 'pnpm-lock.yaml'
2627
node-version-file: '.nvmrc'
2728
- name: Disable Husky
2829
run: echo "HUSKY=0" >> $GITHUB_ENV

.github/workflows/deploy-stage.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3030
with:
3131
cache: 'pnpm'
32+
cache-dependency-path: 'pnpm-lock.yaml'
3233
node-version-file: '.nvmrc'
3334
- name: Disable Husky
3435
run: echo "HUSKY=0" >> $GITHUB_ENV

.github/workflows/verify-pr.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
1616
with:
1717
cache: 'pnpm'
18+
cache-dependency-path: 'pnpm-lock.yaml'
1819
node-version-file: '.nvmrc'
1920
- name: Disable Husky
2021
run: echo "HUSKY=0" >> $GITHUB_ENV

0 commit comments

Comments
 (0)