Skip to content

Commit 135a852

Browse files
authored
Merge pull request #77 from groot007/dev
fix(deps): fix deps
2 parents cefc0b9 + 9a8b7be commit 135a852

5 files changed

Lines changed: 142 additions & 69 deletions

File tree

.github/workflows/lint.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
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",

0 commit comments

Comments
 (0)