Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1158 from Shopify/ignore_engines_in_release_workf…
Browse files Browse the repository at this point in the history
…lows

[Chore] Ignore node engines in release workflows
  • Loading branch information
paulomarg authored Jan 23, 2024
2 parents 3ce0700 + 05ed79f commit 3ecee97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
node-version: 16.x
cache: 'yarn'

# TODO Remove the --ignore-engines flag when we drop support for Node 16
- name: Install dependencies
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --ignore-engines

- name: Create release Pull Request or publish to NPM
id: changesets
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
node-version: 16.x
cache: 'yarn'

# TODO Remove the --ignore-engines flag when we drop support for Node 16
- name: Install dependencies
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --ignore-engines

- name: Create release candidate PR or publish to NPM
id: changesets
Expand Down

0 comments on commit 3ecee97

Please sign in to comment.