Skip to content

Commit 463d304

Browse files
committed
Auto merge of #3241 - Turbo87:disable-embroider, r=Turbo87
CI: Disable `yarn test` command for `embroider` job We are running into a similar issue to what is described at embroider-build/embroider#677. We currently allow the CI step to fail, but since it waits until it times out it keeps the PRs in "running" state for an unnecessarily long time. This PR is changing the CI to only build, but not run the tests, with embroider to avoid the above issue. Once embroider-build/embroider#677 is addressed we can revert this change again. r? `@locks`
2 parents 20de336 + 5c23903 commit 463d304

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ jobs:
5959
node-version: '14.x'
6060

6161
- run: yarn install
62-
- run: yarn test
62+
63+
# `yarn test` currently does not work due to https://github.com/embroider-build/embroider/issues/677
64+
- run: yarn build
6365
continue-on-error: true
6466

6567
backend:

0 commit comments

Comments
 (0)