File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ pull_request :
7+ branches : [main, develop]
8+
9+ jobs :
10+ lint :
11+ name : Run Linting
12+ runs-on : ubuntu-latest
13+ timeout-minutes : 10
14+
15+ steps :
16+ - name : Checkout code
17+ uses : actions/checkout@v4
18+
19+ - name : Setup Node.js
20+ uses : actions/setup-node@v4
21+ with :
22+ node-version : 20
23+ cache : yarn
24+
25+ - name : Install dependencies
26+ run : yarn install --frozen-lockfile
27+
28+ - name : Run TypeScript checks
29+ run : yarn typecheck
30+
31+ - name : Run linting
32+ run : yarn lint
Original file line number Diff line number Diff line change 1+ name : Tests
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ pull_request :
7+ branches : [main, develop]
8+
9+ jobs :
10+ frontend-tests :
11+ name : Frontend Tests
12+ runs-on : ubuntu-latest
13+ timeout-minutes : 15
14+
15+ env :
16+ NODE_ENV : test
17+ CI : true
18+
19+ steps :
20+ - uses : actions/checkout@v4
21+
22+ - name : Setup Node.js
23+ uses : actions/setup-node@v4
24+ with :
25+ node-version : 20
26+ cache : yarn
27+
28+ - name : Install dependencies
29+ run : yarn install --frozen-lockfile
30+
31+ - name : Run frontend tests
32+ run : yarn test
Original file line number Diff line number Diff line change 4040 "ag-grid-community" : " ^33.1.1" ,
4141 "ag-grid-react" : " ^33.1.1" ,
4242 "chakra-react-select" : " ^6.1.0" ,
43+ "date-fns" : " ^3.6.0" ,
4344 "json-edit-react" : " ^1.26.2" ,
4445 "next-themes" : " ^0.4.6" ,
4546 "react-icons" : " ^5.5.0" ,
You can’t perform that action at this time.
0 commit comments