diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2301db316..b89f05e4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,9 @@ jobs: run: pnpm lint - id: set-matrix working-directory: test-packages/support - run: echo "matrix=$(node ./suite-setup-util.js --matrix)" >> $GITHUB_OUTPUT + run: | + matrix_json=$(node ./suite-setup-util --matrix) + echo "matrix=$matrix_json" >> $GITHUB_OUTPUT test: needs: ['preflight'] diff --git a/tests/scenarios/engines-test.ts b/tests/scenarios/engines-test.ts index 09149e95f..948cfa2a5 100644 --- a/tests/scenarios/engines-test.ts +++ b/tests/scenarios/engines-test.ts @@ -117,7 +117,7 @@ engineScenarios }); engineScenarios - .skip('release') // fails due to https://github.com/emberjs/ember.js/pull/20461 + .skip('release-engines') // fails due to https://github.com/emberjs/ember.js/pull/20461 .map('with-fastboot', app => { app.linkDependency('ember-cli-fastboot', { baseDir: __dirname }); app.linkDependency('fastboot', { baseDir: __dirname });