We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d8ef6 commit 5525c7dCopy full SHA for 5525c7d
.github/workflows/ci.yml
@@ -17,6 +17,7 @@ jobs:
17
18
steps:
19
- uses: actions/checkout@v3
20
+
21
- name: Use node.js ${{ matrix.node-version }}
22
uses: actions/setup-node@v3
23
with:
@@ -25,10 +26,10 @@ jobs:
25
26
- name: Cache dependencies
27
id: cache
28
uses: actions/cache@v3
- if: runner.os != 'Windows'
29
+ if: runner.os != 'Windows' # 윈도우는 이슈가 있어 캐싱 건너 뜀 (#325 참고)
30
31
path: '**/node_modules'
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
32
+ key: ${{ matrix.os }}-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
33
34
- name: Install Dependencies
35
if: steps.cache.outputs.cache-hit != 'true'
0 commit comments