Skip to content

Commit

Permalink
Add --ignore-engines flags to install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
surilindur committed Nov 26, 2024
1 parent 514c46e commit ac22025
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Build TypeScript with esModuleInterop flag
run: yarn run build:ts --esModuleInterop true
- name: Run linter
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies and build
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Run unit tests
run: yarn run test-ci:unit
env:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies and build
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Run system tests
run: yarn run test-ci:system
env:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies and build
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Run browser tests
uses: nick-fields/retry@v3
with:
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies and build monorepo
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Install Lerna Docker
run: sh -c "`curl -fsSl https://raw.githubusercontent.com/rubensworks/lerna-docker/master/install.sh`"
- name: Build Docker images
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies and build monorepo
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Run benchmarks
run: cd performance/benchmark-${{ matrix.benchmark }}/ && yarn run performance:ci
- uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
run: yarn install --ignore-scripts --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines --ignore-scripts
- name: Build documentation
run: yarn run doc
- name: Prepare artifact
Expand Down Expand Up @@ -369,6 +369,7 @@ jobs:
artifact_name: documentation

webclients:
name: Web clients
needs:
- misc
- test
Expand All @@ -391,7 +392,7 @@ jobs:
**/node_modules
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- name: Install dependencies and build
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --ignore-engines
- name: Build web clients
run: ./web-clients/build-web-clients.sh
- name: Deploy web clients
Expand Down

0 comments on commit ac22025

Please sign in to comment.