File tree Expand file tree Collapse file tree 1 file changed +24
-21
lines changed Expand file tree Collapse file tree 1 file changed +24
-21
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
3
on :
4
- push :
5
- branches :
6
- - " **"
4
+ push :
5
+ branches :
6
+ - " **"
7
+ pull_request :
8
+ branches :
9
+ - " **"
7
10
8
11
jobs :
9
- build :
10
- runs-on : ubuntu-latest
11
- steps :
12
- - uses : actions/checkout@v4
13
- - uses : actions/setup-node@v4
14
- with :
15
- node-version : 18
16
- cache : " npm"
17
- - name : INSTALL PACKAGES
18
- run : npm install --frozen-lockfile
19
- - name : TYPECHECK
20
- run : npm run type-check
21
- - name : LINT
22
- run : npm run lint
23
- - name : TEST
24
- run : npm run test
25
- - name : BUILD/BUNDLE
26
- run : npm run build
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - uses : actions/setup-node@v4
17
+ with :
18
+ node-version : 18
19
+ cache : " npm"
20
+ - name : INSTALL PACKAGES
21
+ run : npm install --frozen-lockfile
22
+ - name : TYPECHECK
23
+ run : npm run type-check
24
+ - name : LINT
25
+ run : npm run lint
26
+ - name : TEST
27
+ run : npm run test
28
+ - name : BUILD/BUNDLE
29
+ run : npm run build
You can’t perform that action at this time.
0 commit comments