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 3a5cbe3 commit bea42caCopy full SHA for bea42ca
.github/test.yml renamed to .github/workflows/test.yml
@@ -14,21 +14,17 @@ jobs:
14
15
- uses: actions/cache/restore@v3
16
with:
17
- key: npm-dependency-cache-${{hashfiles(package-lock.json)}}
+ key: npm-dependency-cache-${{hashfiles('./package-lock.json')}}
18
path: ./node_modules
19
20
- - run:
21
- name: Install Dependencies
22
- command: |
23
- npm ci
+ - name: Install Dependencies
+ run: npm ci
24
25
- uses: actions/cache/save@v3
26
27
28
29
if: always()
30
31
32
- name: Run Tests
33
34
- npm run test
+ - name: Run Tests
+ run: npm run test
0 commit comments