Skip to content

Commit

Permalink
ci: ignore string engine package.json field warnings (#4156)
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n authored May 29, 2024
1 parent 3361140 commit e9e6473
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e9e6473

Please sign in to comment.