diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cfeea51683..7444c504d6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Lint commit message if: github.ref != 'refs/heads/main' && github.actor != 'dependabot[bot]' run: | @@ -46,7 +46,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Generate typescript declarations run: npm run typescript:declaration working-directory: ./packages/apidom-error @@ -65,7 +65,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Generate typescript declarations run: npm run typescript:declaration - name: Check TypeScript types @@ -83,7 +83,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Build monorepo for testing run: | npm run prebuild @@ -103,7 +103,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Build monorepo run: npm run build:es - name: Build ApiDOM Playground diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 67ea63ce79..6bb52a27e0 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -21,7 +21,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Build monorepo run: npm run build - name: Lint code diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ee1fc5c6a0..b52289a367 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: Install monorepo dependencies - run: npm ci + run: npm ci --engine-strict=false - name: Build monorepo run: npm run build - name: Check TypeScript types