Skip to content

Commit

Permalink
ci: remove --legacy-peer-deps for npm ci
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunnerLivio committed Nov 27, 2023
1 parent e75f739 commit 31afbf4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:
continue-on-error: true
run: npm list

# TODO: Remove --legacy-peer-deps once https://github.com/mikro-orm/nestjs/issues/122 is resolved
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run build:all
env:
CI: true
3 changes: 1 addition & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,5 @@ jobs:
continue-on-error: true
run: npm list

# TODO: Remove --legacy-peer-deps once https://github.com/mikro-orm/nestjs/issues/122 is resolved
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run test:e2e
3 changes: 1 addition & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ jobs:
continue-on-error: true
run: npm list

# TODO: Remove --legacy-peer-deps once https://github.com/mikro-orm/nestjs/issues/122 is resolved
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run format
3 changes: 1 addition & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ jobs:
continue-on-error: true
run: npm list

# TODO: Remove --legacy-peer-deps once https://github.com/mikro-orm/nestjs/issues/122 is resolved
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run lint
3 changes: 1 addition & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:
continue-on-error: true
run: npm list

# TODO: Remove --legacy-peer-deps once https://github.com/mikro-orm/nestjs/issues/122 is resolved
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run build
- run: npm test
env:
Expand Down

0 comments on commit 31afbf4

Please sign in to comment.