Skip to content

Commit 022cc99

Browse files
try skip puppeteer
1 parent df4bd09 commit 022cc99

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/applications.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
- name: Run npm install
116116
env:
117117
PUPPETEER_SKIP_DOWNLOAD: true
118-
run: npm install --no-audit --no-fund
118+
run: npm install --no-package-lock --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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
node-version: '20'
2323

2424
- name: Run npm install
25-
run: npm install --no-audit --no-fund
25+
env:
26+
PUPPETEER_SKIP_DOWNLOAD: true
27+
run: npm install --no-package-lock --no-audit --no-fund
2628

2729
- name: Run tests
2830
run: npm run lint

.github/workflows/themebuilder.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
themebuilder-${{ runner.os }}-node-
3434
3535
- name: Run npm install
36-
run: npm install --no-audit --no-fund
36+
env:
37+
PUPPETEER_SKIP_DOWNLOAD: true
38+
run: npm install --no-package-lock --no-audit --no-fund
3739

3840
- name: Run tests
3941
run: npm run test-themebuilder

0 commit comments

Comments
 (0)