Skip to content

Commit 5be01bb

Browse files
committed
fix
1 parent d4b9c04 commit 5be01bb

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: 22
21-
cache: "pnpm"
21+
cache: 'pnpm'
2222

2323
- name: Install dependencies
2424
run: pnpm install
2525

2626
- name: Typecheck
27-
run: npm run typecheck
27+
run: pnpm run typecheck
2828

2929
- name: Lint
30-
run: npm run lint
30+
run: pnpm run lint

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"lint": "eslint",
1212
"format": "prettier",
1313
"check": "prettier --write . && eslint --fix",
14-
"import-historical": "tsx historicalImporter.ts"
14+
"import-historical": "tsx historicalImporter.ts",
15+
"typecheck": "tsc --noEmit"
1516
},
1617
"dependencies": {
1718
"@dagrejs/dagre": "^1.1.5",
@@ -71,4 +72,4 @@
7172
"vitest": "^3.0.5",
7273
"web-vitals": "^4.2.4"
7374
}
74-
}
75+
}

0 commit comments

Comments
 (0)