Skip to content

Commit 67a1912

Browse files
committed
test lock v2
1 parent 015544c commit 67a1912

File tree

2 files changed

+27898
-74
lines changed

2 files changed

+27898
-74
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@ jobs:
4242
uses: actions/setup-node@v2
4343
with:
4444
node-version: ${{ matrix.NODE_VERSION }}
45-
cache: 'npm'
45+
- name: Cache Node.js modules
46+
uses: actions/cache@v3
47+
with:
48+
path: ~/.npm
49+
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
50+
restore-keys: |
51+
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
4652
- run: npm ci
4753
- run: npm run start:mongodb
4854
- run: npm run lint

0 commit comments

Comments
 (0)