Skip to content

Commit

Permalink
ci: correcting cache parts
Browse files Browse the repository at this point in the history
  • Loading branch information
rH4rtinger committed Oct 10, 2024
1 parent df1467a commit e301cca
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
- name: Cache node_modules
uses: actions/cache@v4
with:
path: node_modules
path: |
node_modules
webview-ui/build
webview-ui/node-modules
key: node_modules-${{ matrix.os }}-node-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down Expand Up @@ -141,7 +142,8 @@ jobs:
- name: Restore cached node_modules
uses: actions/cache@v4
with:
path: node_modules
path: |
node_modules
webview-ui/build
webview-ui/node-modules
key: node_modules-ubuntu-latest-node-22.x-${{ hashFiles('package-lock.json') }}
Expand All @@ -168,4 +170,4 @@ jobs:
-Dsonar.organization=aditosoftware
-Dsonar.eslint.reportPaths=eslint-results.json
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info
-Dsonar.tests=src/test,out/test
-Dsonar.tests=src/test

0 comments on commit e301cca

Please sign in to comment.