Skip to content

Commit 9beddac

Browse files
authored
Use npm ci in pipeline (#425)
1 parent f202d60 commit 9beddac

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Install dependencies
3131
run: |
32-
npm install --no-audit
32+
npm ci --no-audit
3333
npm audit
3434
3535
- name: Build and package the extension

.github/workflows/release-nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
npm -no-git-tag-version --allow-same-version -f version $PACKAGE_VERSION
4444
4545
- name: Install dependencies
46-
run: npm install
46+
run: npm ci --no-audit
4747

4848
- name: Build and package the extension for pre-release
4949
run: npm run extension:package:prerelease

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: npm -no-git-tag-version --allow-same-version -f version $PACKAGE_VERSION
5050

5151
- name: Install dependencies
52-
run: npm install
52+
run: npm ci --no-audit
5353

5454
- name: Build and package the extension
5555
run: npm run extension:package

0 commit comments

Comments
 (0)