File tree Expand file tree Collapse file tree 4 files changed +2122
-2226
lines changed Expand file tree Collapse file tree 4 files changed +2122
-2226
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 : [12.x, 14.x, 16.x]
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Use Node.js ${{ matrix.node-version }}
17
+ uses : actions/setup-node@v2
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 : [12.x, 14.x, 16.x]
30
+ steps :
31
+ - uses : actions/checkout@v2
32
+ - name : Use Node.js ${{ matrix.node-version }}
33
+ uses : actions/setup-node@v2
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
},
13
13
"repository" : " https://github.com/ember-cli-deploy/ember-cli-deploy-s3-index" ,
14
14
"engines" : {
15
- "node" : " >= 4 "
15
+ "node" : " 12.* || 14.* || >= 16 "
16
16
},
17
17
"author" : " " ,
18
18
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments