Skip to content

Commit 3d772dd

Browse files
author
Robert Jackson
committed
Ignore engines during CI's yarn install step.
This is basically horrible, but I can't think of a better solution.
1 parent 599d8bf commit 3d772dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
node-version: 12.x
2222
- name: install dependencies
23-
run: yarn install
23+
run: yarn install --frozen-lockfile
2424
- name: lint:js
2525
run: yarn lint:js
2626
- name: lint:hbs
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
- name: install dependencies
44-
run: yarn install
44+
run: yarn install --ignore-engines --frozen-lockfile
4545
- name: node tests
4646
run: yarn test:node
4747
- name: ember test

0 commit comments

Comments
 (0)