diff --git a/.github/workflows/applications.yml b/.github/workflows/applications.yml index 43e78c4a2..a6c2f8945 100644 --- a/.github/workflows/applications.yml +++ b/.github/workflows/applications.yml @@ -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 @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0d5940de8..bcea5f00a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 980a75185..1501fc17c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 diff --git a/.github/workflows/themebuilder.yml b/.github/workflows/themebuilder.yml index 3f4ef7c18..7cce80fd0 100644 --- a/.github/workflows/themebuilder.yml +++ b/.github/workflows/themebuilder.yml @@ -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