Skip to content

Commit

Permalink
🔧 Remove --strict-peer-dependencies flag from actions (#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenche committed Jun 2, 2022
1 parent 5954a5b commit 2418494
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/DEV-studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install
pnpm studio yarn
- name: Run ESLint 🔎
id: lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/DEV-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install --filter energy-vision-web --strict-peer-dependencies=false
pnpm install
pnpm install --filter energy-vision-web
- name: Run ESLint 🔎
id: lint
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PROD-all-studios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install
pnpm studio yarn
- name: Deploy 🚀
id: deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PROD-equinor-algolia-indexers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
id: install-dependencies
run: |
pushd search
pnpm install --strict-peer-dependencies=false
pnpm install
popd
- name: Run ESLint 🔎
id: lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/PROD-studios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install
pnpm studio yarn
- name: Deploy 🚀
id: deploy
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install
pnpm studio yarn
- name: Deploy 🚀
id: deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TEST-studio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install
pnpm studio yarn
- name: Run ESLint 🔎
id: lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/TEST-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install --filter energy-vision-web --strict-peer-dependencies=false
pnpm install
pnpm install --filter energy-vision-web
- name: Run ESLint 🔎
id: lint
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
- name: Install dependencies 🔧
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm web install --strict-peer-dependencies=false
pnpm e2e install --strict-peer-dependencies=false
pnpm install
pnpm web install
pnpm e2e install
- name: Build web application ⚙️
id: build-web-app
run: pnpm web build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/legacy-js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
id: build-legacy-js
working-directory: ./legacy/js
run: |
pnpm install --strict-peer-dependencies=false
pnpm install
- name: Export to Azure
uses: bacongobbler/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/storybook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
- name: Install dependencies 🔽
id: install-dependencies
run: |
pnpm install --strict-peer-dependencies=false
pnpm install --filter energy-vision-web --strict-peer-dependencies=false
pnpm install
pnpm install --filter energy-vision-web
- name: Lint components 🔎
id: lint
run: |
Expand Down

0 comments on commit 2418494

Please sign in to comment.