File tree Expand file tree Collapse file tree 3 files changed +191
-313
lines changed
Expand file tree Collapse file tree 3 files changed +191
-313
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Node.js CI
2+
3+ on :
4+ push :
5+ branches :
6+ - ' master'
7+ pull_request :
8+ branches :
9+ - master
10+ jobs :
11+ info :
12+ runs-on : ubuntu-22.04
13+ name : info
14+ steps :
15+ - uses : actions/checkout@v3
16+ - uses : actions/setup-node@v3
17+ with :
18+ node-version : ' 20'
19+ lint :
20+ runs-on : ubuntu-22.04
21+ name : Lint
22+ steps :
23+ - uses : actions/checkout@v3
24+ - uses : actions/setup-node@v3
25+ with :
26+ node-version : ' 20'
27+ - run : yarn
28+ - run : yarn lint-ts
29+ build :
30+ runs-on : ubuntu-22.04
31+ name : Build + Test
32+ steps :
33+ - uses : actions/checkout@v3
34+ - uses : actions/setup-node@v3
35+ with :
36+ node-version : ' 20'
37+ - run : yarn
38+ - run : yarn build
39+ - run : yarn test-ci
You can’t perform that action at this time.
0 commit comments