diff --git a/.github/workflows/DEV-studio.yml b/.github/workflows/DEV-studio.yml index 83514d6d1..4bb2580f8 100644 --- a/.github/workflows/DEV-studio.yml +++ b/.github/workflows/DEV-studio.yml @@ -28,11 +28,11 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install + pnpm install --strict-peer-dependencies=false pnpm studio yarn - name: Run ESLint 🔎 id: lint diff --git a/.github/workflows/DEV-web.yaml b/.github/workflows/DEV-web.yaml index f997c32af..34e660920 100644 --- a/.github/workflows/DEV-web.yaml +++ b/.github/workflows/DEV-web.yaml @@ -26,7 +26,7 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Cache pnpm modules 💾 uses: actions/setup-node@v2 with: @@ -35,8 +35,8 @@ jobs: - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install - pnpm install --filter energy-vision-web + pnpm install --strict-peer-dependencies=false + pnpm install --filter energy-vision-web --strict-peer-dependencies=false - name: Run ESLint 🔎 id: lint run: | diff --git a/.github/workflows/PROD-all-studios.yaml b/.github/workflows/PROD-all-studios.yaml index 6baaa4bcd..19627e219 100644 --- a/.github/workflows/PROD-all-studios.yaml +++ b/.github/workflows/PROD-all-studios.yaml @@ -57,11 +57,11 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install + pnpm install --strict-peer-dependencies=false pnpm studio yarn - name: Deploy 🚀 id: deploy @@ -132,7 +132,7 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | diff --git a/.github/workflows/PROD-equinor-algolia-indexers.yaml b/.github/workflows/PROD-equinor-algolia-indexers.yaml index 210b0f00c..5f81cae4d 100644 --- a/.github/workflows/PROD-equinor-algolia-indexers.yaml +++ b/.github/workflows/PROD-equinor-algolia-indexers.yaml @@ -27,7 +27,7 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Cache pnpm modules 💾 uses: actions/setup-node@v2 with: @@ -37,7 +37,7 @@ jobs: id: install-dependencies run: | pushd search - pnpm install + pnpm install --strict-peer-dependencies=false popd - name: Run ESLint 🔎 id: lint @@ -104,7 +104,7 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Cache pnpm modules 💾 uses: actions/setup-node@v2 with: @@ -155,12 +155,12 @@ jobs: uses: azure/powershell@v1 with: inlineScript: | - $profile = "" - $profile = Get-AzWebAppPublishingProfile -ResourceGroupName $env:AZURE_RESOURCE_GROUP_NAME -Name $env:AZURE_FUNCTIONAPP_NAME - $profile = $profile.Replace("`r", "").Replace("`n", "") - Write-Output "::set-output name=pubprofile::$profile" - Remove-Variable profile - azPSVersion: "latest" + $profile = "" + $profile = Get-AzWebAppPublishingProfile -ResourceGroupName $env:AZURE_RESOURCE_GROUP_NAME -Name $env:AZURE_FUNCTIONAPP_NAME + $profile = $profile.Replace("`r", "").Replace("`n", "") + Write-Output "::set-output name=pubprofile::$profile" + Remove-Variable profile + azPSVersion: 'latest' - name: 'Create output directory' shell: bash diff --git a/.github/workflows/PROD-studios.yaml b/.github/workflows/PROD-studios.yaml index d97ca25a8..ae264526a 100644 --- a/.github/workflows/PROD-studios.yaml +++ b/.github/workflows/PROD-studios.yaml @@ -72,11 +72,11 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install + pnpm install --strict-peer-dependencies=false pnpm studio yarn - name: Deploy 🚀 id: deploy @@ -148,11 +148,11 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install + pnpm install --strict-peer-dependencies=false pnpm studio yarn - name: Deploy 🚀 id: deploy diff --git a/.github/workflows/TEST-studio.yaml b/.github/workflows/TEST-studio.yaml index 5ebebcdad..0e42980f8 100644 --- a/.github/workflows/TEST-studio.yaml +++ b/.github/workflows/TEST-studio.yaml @@ -23,11 +23,11 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install + pnpm install --strict-peer-dependencies=false pnpm studio yarn - name: Run ESLint 🔎 id: lint diff --git a/.github/workflows/TEST-web.yaml b/.github/workflows/TEST-web.yaml index 38d3b4d6e..8aa54a398 100644 --- a/.github/workflows/TEST-web.yaml +++ b/.github/workflows/TEST-web.yaml @@ -14,7 +14,7 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Cache pnpm modules 💾 uses: actions/setup-node@v2 with: @@ -23,8 +23,8 @@ jobs: - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install - pnpm install --filter energy-vision-web + pnpm install --strict-peer-dependencies=false + pnpm install --filter energy-vision-web --strict-peer-dependencies=false - name: Run ESLint 🔎 id: lint run: | diff --git a/.github/workflows/a11y.yaml b/.github/workflows/a11y.yaml index 84eeae575..b144a8bce 100644 --- a/.github/workflows/a11y.yaml +++ b/.github/workflows/a11y.yaml @@ -36,13 +36,13 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Install dependencies 🔧 id: install-dependencies run: | - pnpm install - pnpm web install - pnpm e2e install + pnpm install --strict-peer-dependencies=false + pnpm web install --strict-peer-dependencies=false + pnpm e2e install --strict-peer-dependencies=false - name: Build web application ⚙️ id: build-web-app run: pnpm web build diff --git a/.github/workflows/legacy-js.yaml b/.github/workflows/legacy-js.yaml index b3cce7d0e..d61e4a95a 100644 --- a/.github/workflows/legacy-js.yaml +++ b/.github/workflows/legacy-js.yaml @@ -29,12 +29,12 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: '^6.32.11' + version: '^7.1.7' - name: Build legacy js id: build-legacy-js working-directory: ./legacy/js run: | - pnpm install + pnpm install --strict-peer-dependencies=false - name: Export to Azure uses: bacongobbler/azure-blob-storage-upload@v1.2.0 with: diff --git a/.github/workflows/storybook.yaml b/.github/workflows/storybook.yaml index b6b128402..5c620cf8e 100644 --- a/.github/workflows/storybook.yaml +++ b/.github/workflows/storybook.yaml @@ -30,12 +30,12 @@ jobs: id: install-pnpm uses: pnpm/action-setup@v2.0.0 with: - version: ^6.32.11 + version: '^7.1.7' - name: Install dependencies 🔽 id: install-dependencies run: | - pnpm install - pnpm install --filter energy-vision-web + pnpm install --strict-peer-dependencies=false + pnpm install --filter energy-vision-web --strict-peer-dependencies=false - name: Lint components 🔎 id: lint run: |