File tree 4 files changed +29
-3
lines changed
4 files changed +29
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Check code health
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+
9
+ strategy :
10
+ matrix :
11
+ node-version : [20.x]
12
+
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - name : Use Node.js ${{ matrix.node-version }}
16
+ uses : actions/setup-node@v4
17
+ with :
18
+ node-version : ${{ matrix.node-version }}
19
+ - name : Install dependencies
20
+ run : yarn install --immutable --immutable-cache --check-cache
21
+ - name : Run lint
22
+ run : yarn run lint:eslint
23
+ - name : Run build
24
+ run : yarn run build
25
+ - name : Run test
26
+ run : yarn run test
Original file line number Diff line number Diff line change 63
63
" README.md" ,
64
64
" LICENSE.txt"
65
65
]
66
- }
66
+ }
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ createRoot(document.getElementById("root")!).render(
6
6
< StrictMode >
7
7
< App />
8
8
</ StrictMode >
9
- ) ;
9
+ ) ;
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ createRoot(document.getElementById("root")).render(
6
6
< StrictMode >
7
7
< App />
8
8
</ StrictMode >
9
- ) ;
9
+ ) ;
You can’t perform that action at this time.
0 commit comments