Skip to content

Commit

Permalink
Remove min-test
Browse files Browse the repository at this point in the history
  • Loading branch information
cloke committed Nov 21, 2024
1 parent 9f00cb1 commit 2b23fc4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 44 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ jobs:
- run: pnpm test:ember
working-directory: tests/test-app

test_min:
name: "Tests (min-supported, 3.28)"
needs: ['setup']
runs-on: ubuntu-latest
timeout-minutes: 5
# test_min:
# name: "Tests (min-supported, 3.28)"
# needs: ['setup']
# runs-on: ubuntu-latest
# timeout-minutes: 5

steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm test:ember
working-directory: tests/min-supported
# steps:
# - uses: actions/checkout@v4
# - uses: wyvox/action-setup-pnpm@v3
# - run: pnpm test:ember
# working-directory: tests/min-supported

try-scenarios:
name: ${{ matrix.try-scenario }}
Expand Down
48 changes: 14 additions & 34 deletions tests/test-app/config/ember-try.js
Original file line number Diff line number Diff line change
@@ -1,57 +1,51 @@
'use strict';

const getChannelURL = require('ember-source-channel-url');
const { embroiderSafe, embroiderOptimized } = require('@embroider/test-setup');

module.exports = async function () {
return {
usePnpm: true,
buildManagerOptions() {
return ['--ignore-scripts', '--no-frozen-lockfile'];
},
scenarios: [
{
name: 'ember-3.28',
name: 'ember-lts-4.8',
npm: {
devDependencies: {
'ember-source': '~3.28.0',
'ember-source': '~4.8.0',
},
},
},
{
name: 'ember-4.0.0',
name: 'ember-lts-4.12',
npm: {
devDependencies: {
'ember-source': '~4.0.0',
'ember-source': '~4.12.0',
},
},
},
{
name: 'ember-4.4',
name: 'ember-concurrency-4.0',
npm: {
devDependencies: {
'ember-source': '~4.4.0',
dependencies: {
'ember-concurrency': '^4.0.0',
},
},
},
{
name: 'ember-4.8',
name: 'ember-lts-5.4',
npm: {
devDependencies: {
'ember-source': '~4.8.0',
'ember-source': '~5.4.0',
},
},
},
{
name: 'ember-4.12',
name: 'ember-lts-5.8',
npm: {
devDependencies: {
'ember-source': '~4.12.0',
},
},
},
{
name: 'ember-5.4',
npm: {
devDependencies: {
'ember-source': '~5.4.0',
'ember-source': '~5.8.0',
},
},
},
Expand Down Expand Up @@ -79,20 +73,6 @@ module.exports = async function () {
},
},
},
embroiderSafe({
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
},
},
}),
embroiderOptimized({
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
},
},
}),
],
};
};

0 comments on commit 2b23fc4

Please sign in to comment.