Skip to content

Commit e9e6473

Browse files
authored
ci: ignore string engine package.json field warnings (#4156)
1 parent 3361140 commit e9e6473

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: 'npm'
2929
cache-dependency-path: 'package-lock.json'
3030
- name: Install dependencies
31-
run: npm ci
31+
run: npm ci --engine-strict=false
3232
- name: Lint commit message
3333
if: github.ref != 'refs/heads/main' && github.actor != 'dependabot[bot]'
3434
run: |
@@ -46,7 +46,7 @@ jobs:
4646
cache: 'npm'
4747
cache-dependency-path: 'package-lock.json'
4848
- name: Install dependencies
49-
run: npm ci
49+
run: npm ci --engine-strict=false
5050
- name: Generate typescript declarations
5151
run: npm run typescript:declaration
5252
working-directory: ./packages/apidom-error
@@ -65,7 +65,7 @@ jobs:
6565
cache: 'npm'
6666
cache-dependency-path: 'package-lock.json'
6767
- name: Install dependencies
68-
run: npm ci
68+
run: npm ci --engine-strict=false
6969
- name: Generate typescript declarations
7070
run: npm run typescript:declaration
7171
- name: Check TypeScript types
@@ -83,7 +83,7 @@ jobs:
8383
cache: 'npm'
8484
cache-dependency-path: 'package-lock.json'
8585
- name: Install dependencies
86-
run: npm ci
86+
run: npm ci --engine-strict=false
8787
- name: Build monorepo for testing
8888
run: |
8989
npm run prebuild
@@ -103,7 +103,7 @@ jobs:
103103
cache: 'npm'
104104
cache-dependency-path: 'package-lock.json'
105105
- name: Install dependencies
106-
run: npm ci
106+
run: npm ci --engine-strict=false
107107
- name: Build monorepo
108108
run: npm run build:es
109109
- name: Build ApiDOM Playground

.github/workflows/nightly-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
cache: 'npm'
2222
cache-dependency-path: 'package-lock.json'
2323
- name: Install dependencies
24-
run: npm ci
24+
run: npm ci --engine-strict=false
2525
- name: Build monorepo
2626
run: npm run build
2727
- name: Lint code

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cache: 'npm'
2929
cache-dependency-path: 'package-lock.json'
3030
- name: Install monorepo dependencies
31-
run: npm ci
31+
run: npm ci --engine-strict=false
3232
- name: Build monorepo
3333
run: npm run build
3434
- name: Check TypeScript types

0 commit comments

Comments
 (0)