Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenbf committed Sep 14, 2023
1 parent a85401a commit 97edb35
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
id: yarn-cache
uses: actions/cache@v3
with:
path: node_modules
path: |
./node_modules
./packages/ccd-js-gen/node_modules
./examples/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn
Expand Down Expand Up @@ -86,7 +89,9 @@ jobs:
- name: Restore dependencies
uses: actions/cache/restore@v3
with:
path: node_modules
path: |
./node_modules
./packages/ccd-js-gen/node_modules
key: ${{ runner.os }}-yarn

- name: Install rust
Expand Down

0 comments on commit 97edb35

Please sign in to comment.