Skip to content

Commit 78ab602

Browse files
authored
fix: Round Two fixing example upload workflow (#57)
Attempt number two at fixing the yaml.
1 parent 937247f commit 78ab602

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/upload_example_stats.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,21 @@ jobs:
7676
with:
7777
version: 8
7878
run_install: false
79+
7980
- name: Get pnpm store directory
8081
shell: bash
8182
run: |
8283
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
8384
84-
- name: Cache node_modules
85-
id: cache-node-modules
86-
uses: actions/cache@v3
87-
env:
88-
cache-name: cache-codecov-js-bundle-plugin-node-modules
89-
with:
90-
path: ${{ env.STORE_PATH }}
91-
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
92-
restore-keys: |
85+
- name: Cache node_modules
86+
id: cache-node-modules
87+
uses: actions/cache@v3
88+
env:
89+
cache-name: cache-codecov-js-bundle-plugin-node-modules
90+
with:
91+
path: ${{ env.STORE_PATH }}
92+
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
93+
restore-keys: |
9394
${{ runner.os }}-${{ env.cache-name }}-
9495

9596
- name: Install dependencies

0 commit comments

Comments
 (0)