Skip to content

Commit

Permalink
ci: use npm ci
Browse files Browse the repository at this point in the history
Also add package-lock.json
  • Loading branch information
alxndrsn committed Apr 2, 2024
1 parent b8bf8a5 commit a806300
Show file tree
Hide file tree
Showing 2 changed files with 7,503 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm ci
- run: npm run lint

test:
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm ci
- run: npm run test-js

types:
Expand All @@ -51,5 +51,5 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm install
- run: npm ci
- run: npm run test-ts

0 comments on commit a806300

Please sign in to comment.