File tree Expand file tree Collapse file tree 1 file changed +17
-10
lines changed Expand file tree Collapse file tree 1 file changed +17
-10
lines changed Original file line number Diff line number Diff line change 7
7
- master
8
8
pull_request : {}
9
9
10
+ concurrency :
11
+ group : ci-${{ github.head_ref || github.ref }}
12
+ cancel-in-progress : true
13
+
10
14
jobs :
11
15
test :
12
16
name : " Tests"
13
17
runs-on : ubuntu-latest
18
+ timeout-minutes : 10
14
19
15
20
steps :
16
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v3
17
22
- name : Install Node
18
- uses : actions/setup-node@v2
23
+ uses : actions/setup-node@v3
19
24
with :
20
- node-version : 12.x
25
+ node-version : 14
21
26
cache : npm
22
27
- name : Install Dependencies
23
28
run : npm ci
@@ -29,12 +34,13 @@ jobs:
29
34
floating :
30
35
name : " Floating Dependencies"
31
36
runs-on : ubuntu-latest
37
+ timeout-minutes : 10
32
38
33
39
steps :
34
- - uses : actions/checkout@v2
35
- - uses : actions/setup-node@v2
40
+ - uses : actions/checkout@v3
41
+ - uses : actions/setup-node@v3
36
42
with :
37
- node-version : 12.x
43
+ node-version : 14
38
44
cache : npm
39
45
- name : Install Dependencies
40
46
run : npm install --no-shrinkwrap
44
50
try-scenarios :
45
51
name : ${{ matrix.try-scenario }}
46
52
runs-on : ubuntu-latest
47
- needs : ' test'
53
+ needs : " test"
54
+ timeout-minutes : 10
48
55
49
56
strategy :
50
57
fail-fast : false
@@ -62,11 +69,11 @@ jobs:
62
69
- embroider-optimized
63
70
64
71
steps :
65
- - uses : actions/checkout@v2
72
+ - uses : actions/checkout@v3
66
73
- name : Install Node
67
- uses : actions/setup-node@v2
74
+ uses : actions/setup-node@v3
68
75
with :
69
- node-version : 12.x
76
+ node-version : 14
70
77
cache : npm
71
78
- name : Install Dependencies
72
79
run : npm ci
You can’t perform that action at this time.
0 commit comments