Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Run npm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: npm install --no-audit --no-fund
run: npm ci --no-audit --no-fund

- uses: browser-actions/setup-chrome@v1
id: setup-chrome
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Run npm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: npm install --no-package-lock --no-audit --no-fund
run: npm ci --no-audit --no-fund

- name: Run schematics tests
run: cd packages/devextreme-schematics && npm run test
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Run npm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: npm install --no-package-lock --no-audit --no-fund
run: npm ci --no-audit --no-fund

- name: Run tests
run: npm run lint
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
uses: actions/checkout@v4

- name: Run npm install - root
run: npm install --no-audit --no-fund
run: npm ci --no-audit --no-fund

- name: Run npm install - devextreme-schematics
working-directory: packages/devextreme-schematics
run: npm install --no-audit --no-fund
run: npm ci --no-audit --no-fund

- name: Test devextreme-schematics
working-directory: packages/devextreme-schematics
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/themebuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Run npm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: npm install --no-package-lock --no-audit --no-fund
run: npm ci --no-audit --no-fund

- name: Run tests
run: npm run test-themebuilder
Loading