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

Commit c929b51

Browse files
committed
[1.x]: Expand try matrix
1 parent 634145e commit c929b51

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,21 @@ jobs:
2828
matrix:
2929
ember-version:
3030
- default
31-
#- release
32-
#- beta
33-
#- canary
31+
- release
32+
- beta
33+
- canary
3434
- lts-3.4
3535
- lts-3.8
3636
- lts-3.12
3737
- lts-3.16
3838
- lts-3.20
3939
- lts-3.24
4040
- lts-3.28
41+
- lts-4.4
42+
- lts-4.8
43+
- lts-4.12
44+
- lts-5.4
45+
- lts-5.8
4146

4247
steps:
4348
- uses: actions/checkout@v2

packages/@glimmer/component/config/ember-try.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
const getChannelURL = require('ember-source-channel-url');
44

55
module.exports = function() {
6+
function lts(version, extra = {}) {
7+
return {
8+
name: `ember-lts-${version}`,
9+
npm: {
10+
...extra,
11+
devDependencies: {
12+
'ember-source': `~${version}.0`,
13+
...(extra?.devDependencies || {}),
14+
}
15+
16+
},
17+
}
18+
}
19+
620
return Promise.all([
721
getChannelURL('release'),
822
getChannelURL('beta'),
@@ -67,6 +81,11 @@ module.exports = function() {
6781
},
6882
},
6983
},
84+
lts('4.4'),
85+
lts('4.8'),
86+
lts('4.12'),
87+
lts('5.4'),
88+
lts('5.8'),
7089
{
7190
name: 'ember-release',
7291
npm: {

0 commit comments

Comments
 (0)