File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build test
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ jobs :
7+ test :
8+ name : Run build
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout code
12+ uses : actions/checkout@v3
13+ with :
14+ fetch-depth : 0
15+ - name : Install base dependencies
16+ run : |
17+ yarn
18+ cd react
19+ yarn
20+
21+ - name : Build
22+ run : |
23+ yarn build
24+
25+ - name : Check TS declaration files
26+ run : |
27+ [[ -f react/dist/index.d.ts ]]
Original file line number Diff line number Diff line change 1+ name : Run tests
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ jobs :
7+ test :
8+ name : Run unit tests
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout code
12+ uses : actions/checkout@v3
13+ with :
14+ fetch-depth : 0
15+ - name : Install base dependencies
16+ run : |
17+ yarn
18+ cd react
19+ yarn
20+
21+ - name : Run react unit tests
22+ run : |
23+ yarn test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments