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 f9a3326 commit d3f4f38Copy full SHA for d3f4f38
.github/workflows/push.yml
@@ -19,8 +19,23 @@ jobs:
19
uses: actions/setup-node@v1
20
with:
21
node-version: 16
22
+
23
+ # Restore NPM Cache
24
+ - name: Cache node modules
25
+ uses: actions/cache@v2
26
+ env:
27
+ cache-name: cache-node-modules
28
+ with:
29
+ # npm cache files are stored in `~/.npm` on Linux/macOS
30
+ path: ~/.npm
31
+ key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
32
+ restore-keys: |
33
+ ${{ runner.os }}-build-${{ env.cache-name }}-
34
+ ${{ runner.os }}-build-
35
+ ${{ runner.os }}-
36
- run: npm ci
37
- run: npm run prepublishOnly
38
+ - run: npm run test:update
39
- run: npm run test
40
41
- name: "Automated Version Bump"
0 commit comments