File tree Expand file tree Collapse file tree 5 files changed +45
-327
lines changed
Expand file tree Collapse file tree 5 files changed +45
-327
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ test :
9+ name : Test
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+ - uses : actions/setup-node@v4
14+ with :
15+ node-version-file : ' .nvmrc'
16+ cache : ' npm'
17+ - run : npm ci
18+ - run : npm run test
19+
20+ lint :
21+ name : Check lint
22+ runs-on : ubuntu-latest
23+ steps :
24+ - uses : actions/checkout@v4
25+ - uses : actions/setup-node@v4
26+ with :
27+ node-version-file : ' .nvmrc'
28+ cache : ' npm'
29+ - run : npm ci
30+ - run : npm run lint
31+
32+ format :
33+ name : Check code format
34+ runs-on : ubuntu-latest
35+ steps :
36+ - uses : actions/checkout@v4
37+ - uses : actions/setup-node@v4
38+ with :
39+ node-version-file : ' .nvmrc'
40+ cache : ' npm'
41+ - run : npm ci
42+ - run : npm run prettier:check
Original file line number Diff line number Diff line change 1+ 18.12
You can’t perform that action at this time.
0 commit comments