We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 849f602 commit 4b90245Copy full SHA for 4b90245
.github/workflows/release.yml
@@ -14,7 +14,9 @@ jobs:
14
steps:
15
- uses: actions/checkout@v2
16
- uses: actions/setup-node@v2
17
- - uses: bahmutov/npm-install@v1
+ with:
18
+ cache: npm
19
+ - run: npm ci
20
- run: npx semantic-release
21
env:
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/test.yml
@@ -25,7 +25,8 @@ jobs:
25
uses: actions/setup-node@v2
26
with:
27
node-version: "${{ matrix.node-version }}"
28
29
30
- run: "npm run test:ci"
31
test:
32
runs-on: ubuntu-latest
@@ -36,6 +37,7 @@ jobs:
36
37
38
39
40
41
42
- run: npm run lint
43
- run: npx lockfile-lint --path package-lock.json
0 commit comments