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

Commit 3ecee97

Browse files
authored
Merge pull request #1158 from Shopify/ignore_engines_in_release_workflows
[Chore] Ignore node engines in release workflows
2 parents 3ce0700 + 05ed79f commit 3ecee97

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
node-version: 16.x
2222
cache: 'yarn'
2323

24+
# TODO Remove the --ignore-engines flag when we drop support for Node 16
2425
- name: Install dependencies
25-
run: yarn --frozen-lockfile
26+
run: yarn --frozen-lockfile --ignore-engines
2627

2728
- name: Create release Pull Request or publish to NPM
2829
id: changesets

.github/workflows/release-candidate.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ jobs:
2121
node-version: 16.x
2222
cache: 'yarn'
2323

24+
# TODO Remove the --ignore-engines flag when we drop support for Node 16
2425
- name: Install dependencies
25-
run: yarn --frozen-lockfile
26+
run: yarn --frozen-lockfile --ignore-engines
2627

2728
- name: Create release candidate PR or publish to NPM
2829
id: changesets

0 commit comments

Comments
 (0)