File tree 2 files changed +0
-7
lines changed 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 6
6
name : Build
7
7
runs-on : self-hosted
8
8
strategy :
9
- max-parallel : 2
10
9
matrix :
11
10
node-version : [16.x, 18.x]
12
11
steps :
25
24
name : Lint Code
26
25
needs : build
27
26
runs-on : self-hosted
28
- concurrency : job-second-stage
29
27
strategy :
30
- max-parallel : 2
31
28
matrix :
32
29
node-version : [16.x, 18.x]
33
30
steps :
40
37
name : Unit Tests
41
38
needs : build
42
39
runs-on : self-hosted
43
- concurrency : job-second-stage
44
40
strategy :
45
- max-parallel : 2
46
41
matrix :
47
42
node-version : [16.x, 18.x]
48
43
steps :
Original file line number Diff line number Diff line change 21
21
name : Lint Code
22
22
needs : build
23
23
runs-on : self-hosted
24
- concurrency : job-second-stage
25
24
steps :
26
25
- name : Linting
27
26
run : npm run lint
32
31
name : Unit Tests
33
32
needs : build
34
33
runs-on : self-hosted
35
- concurrency : job-second-stage
36
34
steps :
37
35
- name : Running unit tests
38
36
run : npm run test:unit
You can’t perform that action at this time.
0 commit comments