Skip to content

Commit

Permalink
fix: add --ignore-engines for yarn install to circumvent aoconnect pa…
Browse files Browse the repository at this point in the history
…ckage's insistence on npm
  • Loading branch information
kunstmusik committed Jul 31, 2024
1 parent b0cbd52 commit 9045cf8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version-file: '.nvmrc'
cache: 'yarn'

- run: yarn install --frozen-lockfile
- run: yarn install --frozen-lockfile --ignore-engines
- run: yarn ${{ matrix.step }}

deploy-to-github:
Expand All @@ -40,7 +40,7 @@ jobs:

- name: Install and Build 🔧
run: |
yarn install --frozen-lockfile
yarn install --frozen-lockfile --ignore-engines
yarn build
env:
# FOR BUILD
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
]
steps:
- uses: actions/checkout@v3
- run: yarn install --frozen-lockfile
- run: yarn install --frozen-lockfile --ignore-engines
- run: yarn ${{ matrix.step }}

deploy-to-firebase:
Expand All @@ -29,7 +29,7 @@ jobs:
cache: 'yarn'
- name: Install and Build 🔧
run: |
yarn install --frozen-lockfile
yarn install --frozen-lockfile --ignore-engines
yarn build
env:
# FOR BUILD
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn install --frozen-lockfile --ignore-engines
- run: yarn ${{ matrix.step }}

deploy-to-firebase:
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Install and Build 🔧
run: |
yarn install --frozen-lockfile
yarn install --frozen-lockfile --ignore-engines
yarn build
env:
# FOR BUILD
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Install, Build, and Deploy 🔧
run: |
yarn install --frozen-lockfile
yarn install --frozen-lockfile --ignore-engines
yarn deploy
env:
# FOR BUILD
Expand Down

0 comments on commit 9045cf8

Please sign in to comment.