File tree Expand file tree Collapse file tree 4 files changed +84
-0
lines changed Expand file tree Collapse file tree 4 files changed +84
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [main]
4
+ pull_request :
5
+ branches : [main]
6
+ paths :
7
+ - ' **.json'
8
+ - ' src/**'
9
+ jobs :
10
+ astro :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-node@v2
15
+ with :
16
+ node-version : 16
17
+ cache : ' yarn'
18
+ - name : install dependencies
19
+ run : yarn install
20
+ - name : run astro checker
21
+ run : yarn check:astro
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [main]
4
+ pull_request :
5
+ branches : [main]
6
+ paths :
7
+ - ' **.json'
8
+ - ' src/**'
9
+ jobs :
10
+ format :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-node@v2
15
+ with :
16
+ node-version : 16
17
+ cache : ' yarn'
18
+ - name : install dependencies
19
+ run : yarn install
20
+ - name : run format checker
21
+ run : yarn check:format
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [main]
4
+ pull_request :
5
+ branches : [main]
6
+ paths :
7
+ - ' **.json'
8
+ - ' src/**'
9
+ jobs :
10
+ lint :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-node@v2
15
+ with :
16
+ node-version : 16
17
+ cache : ' yarn'
18
+ - name : install dependencies
19
+ run : yarn install
20
+ - name : run lint checker
21
+ run : yarn check:lint
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [main]
4
+ pull_request :
5
+ branches : [main]
6
+ paths :
7
+ - ' **.json'
8
+ - ' src/**'
9
+ jobs :
10
+ type :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-node@v2
15
+ with :
16
+ node-version : 16
17
+ cache : ' yarn'
18
+ - name : install dependencies
19
+ run : yarn install
20
+ - name : run type checker
21
+ run : yarn check:type
You can’t perform that action at this time.
0 commit comments