File tree Expand file tree Collapse file tree 4 files changed +3515
-3076
lines changed Expand file tree Collapse file tree 4 files changed +3515
-3076
lines changed Original file line number Diff line number Diff line change
1
+ name : Continuous Integration
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ test :
9
+ name : Test
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ matrix :
13
+ node-version : [14.x, 16.x, 18.x, 20.x]
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Use Node.js ${{ matrix.node-version }}
17
+ uses : actions/setup-node@v3
18
+ with :
19
+ node-version : ${{ matrix.node-version }}
20
+ cache : ' yarn'
21
+ - run : yarn install
22
+ - run : yarn test
23
+
24
+ test-floating :
25
+ name : Floating Dependencies
26
+ runs-on : ubuntu-latest
27
+ strategy :
28
+ matrix :
29
+ node-version : [14.x, 16.x, 18.x, 20.x]
30
+ steps :
31
+ - uses : actions/checkout@v2
32
+ - name : Use Node.js ${{ matrix.node-version }}
33
+ uses : actions/setup-node@v3
34
+ with :
35
+ node-version : ${{ matrix.node-version }}
36
+ cache : ' yarn'
37
+ - name : install dependencies
38
+ run : yarn install --no-lockfile
39
+ - name : test
40
+ run : yarn test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 12
12
"autotest" : " node node_modules/mocha/bin/mocha --watch --reporter spec tests/**/*-test.js"
13
13
},
14
14
"engines" : {
15
- "node" : " 6 .* || >= 8 .*"
15
+ "node" : " 14 .* || 16.* || 18.* || >= 20 .*"
16
16
},
17
17
"author" : " " ,
18
18
"license" : " MIT" ,
19
19
"devDependencies" : {
20
- "chai" : " ^3.0.0" ,
21
- "chai-as-promised" : " ^6.0.0" ,
22
- "ember-cli" : " ^3.1.0" ,
23
- "ember-cli-release" : " ^1.0.0-beta.2" ,
24
- "eslint" : " ^3.18.0" ,
25
- "github" : " ^9.2.0" ,
26
- "mocha" : " ^3.2.0" ,
27
- "multiline" : " ^1.0.2" ,
28
- "sinon" : " ^2.0.0"
20
+ "chai" : " ^4.3.7" ,
21
+ "chai-as-promised" : " ^7.1.1" ,
22
+ "ember-cli" : " ^3.28.6" ,
23
+ "eslint" : " ^8.42.0" ,
24
+ "github" : " ^14.0.0" ,
25
+ "mocha" : " ^10.2.0" ,
26
+ "multiline" : " ^2.0.0" ,
27
+ "sinon" : " ^2.4.1"
29
28
},
30
29
"keywords" : [
31
30
" ember-addon" ,
32
31
" ember-cli-deploy-plugin"
33
32
],
34
33
"dependencies" : {
35
- "chalk" : " ^1.0.0 " ,
36
- "core-object" : " ^2.0.0 " ,
37
- "ember-cli-deploy-plugin" : " ^0.2.3 " ,
34
+ "chalk" : " ^1.1.3 " ,
35
+ "core-object" : " ^2.1.1 " ,
36
+ "ember-cli-deploy-plugin" : " ^0.2.9 " ,
38
37
"moment" : " ^2.17.1" ,
39
38
"node-slackr" : " ^0.2.0" ,
40
- "rsvp" : " ^3.5.0 " ,
41
- "silent-error" : " ^1.0.0 "
39
+ "rsvp" : " ^4.8.5 " ,
40
+ "silent-error" : " ^1.1.1 "
42
41
},
43
42
"ember-addon" : {
44
43
"configPath" : " tests/dummy/config"
You can’t perform that action at this time.
0 commit comments