diff --git a/.github/workflows/github-ci.yml b/.github/workflows/github-ci.yml index 3be2b0e3..721ef0ad 100644 --- a/.github/workflows/github-ci.yml +++ b/.github/workflows/github-ci.yml @@ -25,7 +25,7 @@ jobs: node-version: 20.11.0 - name: Install dependencies - run: npm ci + run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo - name: Perfrom ESLint check run: npm run lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 99348e08..69a2bff5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: node-version: ${{ matrix.version }} - name: Install dependencies - run: npm ci + run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo - name: Run unit tests run: npm run test:unit:coverage @@ -57,7 +57,7 @@ jobs: node-version: 22.x - name: Install dependencies - run: npm ci + run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo - name: Install @ui5/cli ${{matrix.ui5-cli}} run: npm i -D @ui5/cli@${{matrix.ui5-cli}}