Skip to content

Commit 1991ab8

Browse files
authored
Use npm ci wherever possible (#1016)
1 parent d8919cf commit 1991ab8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/applications.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Run npm install
4646
env:
4747
PUPPETEER_SKIP_DOWNLOAD: true
48-
run: npm install --no-audit --no-fund
48+
run: npm ci --no-audit --no-fund
4949

5050
- uses: browser-actions/setup-chrome@v1
5151
id: setup-chrome
@@ -115,7 +115,7 @@ jobs:
115115
- name: Run npm install
116116
env:
117117
PUPPETEER_SKIP_DOWNLOAD: true
118-
run: npm install --no-package-lock --no-audit --no-fund
118+
run: npm ci --no-audit --no-fund
119119

120120
- name: Run schematics tests
121121
run: cd packages/devextreme-schematics && npm run test

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Run npm install
2525
env:
2626
PUPPETEER_SKIP_DOWNLOAD: true
27-
run: npm install --no-package-lock --no-audit --no-fund
27+
run: npm ci --no-audit --no-fund
2828

2929
- name: Run tests
3030
run: npm run lint

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
uses: actions/checkout@v4
2525

2626
- name: Run npm install - root
27-
run: npm install --no-audit --no-fund
27+
run: npm ci --no-audit --no-fund
2828

2929
- name: Run npm install - devextreme-schematics
3030
working-directory: packages/devextreme-schematics
31-
run: npm install --no-audit --no-fund
31+
run: npm ci --no-audit --no-fund
3232

3333
- name: Test devextreme-schematics
3434
working-directory: packages/devextreme-schematics

.github/workflows/themebuilder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Run npm install
3636
env:
3737
PUPPETEER_SKIP_DOWNLOAD: true
38-
run: npm install --no-package-lock --no-audit --no-fund
38+
run: npm ci --no-audit --no-fund
3939

4040
- name: Run tests
4141
run: npm run test-themebuilder

0 commit comments

Comments
 (0)