Skip to content

Commit 065b5c6

Browse files
Fix workflow install step
"npm ci" only works with a lockfile.
1 parent 76ecc0e commit 065b5c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-node@v1
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
- run: npm ci
28+
- run: npm install
2929
- run: npm run lint
3030
- run: npm run test
3131
- run: npx snyk test

0 commit comments

Comments
 (0)