Skip to content

Commit 44cb309

Browse files
committed
error handling
1 parent c087056 commit 44cb309

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/run-checks.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Lint, Format, Test, Build
33
on:
44
push:
55
branches:
6-
- "*"
7-
- "!main"
8-
- "!develop"
6+
- '*'
7+
- '!main'
8+
- '!develop'
99
workflow_dispatch:
1010

1111
jobs:
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: 23
22-
cache: "npm"
22+
cache: 'npm'
2323

2424
- name: Install Node.js packages
2525
run: npm ci
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/setup-node@v4
3535
with:
3636
node-version: 23
37-
cache: "npm"
37+
cache: 'npm'
3838

3939
- name: Install Node.js packages
4040
run: npm ci
@@ -52,7 +52,7 @@ jobs:
5252
uses: actions/setup-node@v4
5353
with:
5454
node-version: 23
55-
cache: "npm"
55+
cache: 'npm'
5656

5757
- name: Install Node.js packages
5858
run: npm ci
@@ -70,7 +70,7 @@ jobs:
7070
uses: actions/setup-node@v4
7171
with:
7272
node-version: 23
73-
cache: "npm"
73+
cache: 'npm'
7474

7575
- name: Install Node.js packages
7676
run: npm ci
@@ -90,7 +90,7 @@ jobs:
9090
uses: actions/setup-node@v4
9191
with:
9292
node-version: 23
93-
cache: "npm"
93+
cache: 'npm'
9494

9595
- name: Install Node.js packages
9696
run: npm ci

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"test": "jest --watch",
1515
"test:ci": "jest",
1616
"analyze": "ANALYZE=true npm run build",
17-
"typecheck": "npx tsc --noEmit --watch"
17+
"typecheck": "npx tsc --noEmit",
18+
"typecheck:watch": "npx tsc --noEmit --watch"
1819
},
1920
"dependencies": {
2021
"@ant-design/icons": "^5.0.1",

0 commit comments

Comments
 (0)