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 015544c commit 67a1912Copy full SHA for 67a1912
.github/workflows/ci.yml
@@ -42,7 +42,13 @@ jobs:
42
uses: actions/setup-node@v2
43
with:
44
node-version: ${{ matrix.NODE_VERSION }}
45
- cache: 'npm'
+ - 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 }}-
52
- run: npm ci
53
- run: npm run start:mongodb
54
- run: npm run lint
0 commit comments