File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,6 @@ end_of_line = lf
9
9
insert_final_newline = true
10
10
indent_style = space
11
11
indent_size = 4
12
+
13
+ [* .yaml ]
14
+ indent_size = 2
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+ types : [ opened, synchronize ]
6
+ push :
7
+ branches : [ main ]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+
13
+ strategy :
14
+ matrix :
15
+ node-version : [16.x]
16
+
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+
20
+ - name : Use Node.js ${{ matrix.node-version }}
21
+ uses : actions/setup-node@v2
22
+ with :
23
+ node-version : ${{ matrix.node-version }}
24
+ cache : ' yarn'
25
+
26
+ - name : Install dependencies
27
+ run : yarn
28
+
29
+ - name : Build
30
+ run : yarn build
31
+
32
+ - name : Run Jest tests
33
+ run : yarn test
Original file line number Diff line number Diff line change 6
6
],
7
7
"scripts" : {
8
8
"lerna" : " lerna" ,
9
+ "build" : " lerna run build --stream" ,
9
10
"test" : " jest"
10
11
},
11
12
"engines" : {
You can’t perform that action at this time.
0 commit comments