Skip to content

Commit

Permalink
build: update dependencies (#608)
Browse files Browse the repository at this point in the history
* build: update dependencies

* build: remove legacy-peer-deps option

---------

Co-authored-by: khalilou88 <[email protected]>
  • Loading branch information
khalilou88 and khalilou88 authored Nov 12, 2023
1 parent 433db09 commit 3c20697
Show file tree
Hide file tree
Showing 15 changed files with 104 additions and 113 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npm i --legacy-peer-deps"
"postCreateCommand": "npm i"
// Configure tool-specific properties.
// "customizations": {},

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- name: Lint
run: npm run nx run-many -- --target=lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- run: npm i --legacy-peer-deps
- run: npm i

- name: Deploy
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- name: Setup Java
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- name: Lint
run: npm run nx run-many -- --target=lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nx-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- name: Check if @nx/workspace is outdated
id: nx-workspace-outdated
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Install dependencies
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
run: npm i --legacy-peer-deps
run: npm i

- name: Check if has migrations
if: steps.nx-workspace-outdated.outputs.outdated == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- name: Lint
run: npm run nx run-many -- --target=lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- name: smoke tests
run: npm run nx smoke jnxplus-smoke -- --t="${{ github.event.inputs.t_option }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- run: npm i --legacy-peer-deps
- run: npm i

- name: Version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- run: npm i --legacy-peer-deps
- run: npm i

- name: Version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-affected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- run: npm run nx run-many -- --target=smoke-affected
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- run: npm run nx run-many -- --target=smoke-next
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Install dependencies
run: npm i --legacy-peer-deps
run: npm i

- run: npm run nx run-many -- --target=smoke
env:
Expand Down
Loading

0 comments on commit 3c20697

Please sign in to comment.