From 97edb358293eb2ac8af9a1242bbb67511bcbf65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Bruus=20Zeppelin?= Date: Thu, 14 Sep 2023 13:45:45 +0200 Subject: [PATCH] Fix CI --- .github/workflows/pipeline.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index c29ff4b04..a0cccb91b 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -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 @@ -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