Skip to content

Commit

Permalink
chore: swap out npm install for npm ci in CI (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
sockmaster27 authored Jan 31, 2024
1 parent 446766f commit 428d988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
run: npm ci
- name: Check code formatting
run: npx prettier . --check
- name: Run linter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm ci
- run: npx @vscode/vsce package

0 comments on commit 428d988

Please sign in to comment.