File tree Expand file tree Collapse file tree 2 files changed +33
-61
lines changed Expand file tree Collapse file tree 2 files changed +33
-61
lines changed Original file line number Diff line number Diff line change 1
1
name : Checks
2
2
on :
3
- pull_request :
4
- types : [opened, synchronize]
3
+ pull_request :
4
+ types : [opened, synchronize]
5
+ push :
6
+ branches :
7
+ - ' *'
8
+ paths-ignore :
9
+ - ' system/**/*'
10
+ - ' .github/**/*'
11
+ - ' *.md'
5
12
6
13
jobs :
7
- checks :
8
- runs-on : ubuntu-latest
9
- strategy :
10
- matrix :
11
- node-version : [16, 18, 20]
12
- steps :
13
- - name : Checkout Repo
14
- uses : actions/checkout@v4
15
-
16
- - name : Setup Node.js ${{ matrix.node-version }}
17
- uses : actions/setup-node@v4
18
- with :
19
- node-version : ${{ matrix.node-version }}
14
+ checks :
15
+ runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ node-version : [16, 18, 20]
19
+ steps :
20
+ - name : Checkout Repo
21
+ uses : actions/checkout@v4
22
+
23
+ - name : Setup Node.js ${{ matrix.node-version }}
24
+ uses : actions/setup-node@v4
25
+ with :
26
+ node-version : ${{ matrix.node-version }}
20
27
21
- - name : Setup and install deps
22
- run : |
23
- npm install
28
+ - name : Setup and install deps
29
+ run : npm install
30
+
31
+ - name : Lint check
32
+ run : npm run lint
24
33
25
- - name : Prettier check
26
- run : |
27
- npm run format:check
34
+ - name : Prettier check
35
+ run : npm run format:check
28
36
29
- - name : Build
30
- run : |
31
- npm run build
37
+ - name : Build
38
+ run : npm run build
32
39
33
- - name : Test
34
- run : |
35
- npm run test
40
+ - name : Test
41
+ run : npm run test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments