File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches : [main]
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : hmarr/debug-action@v2
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ cache : yarn
16
+ node-version-file : ' .nvmrc'
17
+ - name : Install packages
18
+ run : yarn --immutable
19
+ - name : Build library
20
+ run : yarn build
21
+ unit :
22
+ runs-on : ubuntu-latest
23
+ steps :
24
+ - uses : hmarr/debug-action@v2
25
+ - uses : actions/checkout@v3
26
+ - uses : actions/setup-node@v3
27
+ with :
28
+ cache : yarn
29
+ node-version-file : ' .nvmrc'
30
+ - name : Install packages
31
+ run : yarn --immutable
32
+ - name : Jest
33
+ run : yarn test
Original file line number Diff line number Diff line change
1
+ v14
You can’t perform that action at this time.
0 commit comments