Skip to content

Commit f556a98

Browse files
committed
chore: CI improvement
1 parent 2513e7c commit f556a98

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
with:
1717
path: ~/.pnpm-store
1818
key: node-modules-${{ hashFiles('package.json') }}
19-
- name: Install dependencies
19+
- name: Setup pnpm
2020
uses: pnpm/action-setup@v2
2121
with:
2222
version: latest
23-
run_install: true
23+
- name: Install dependencies
24+
run: pnpm install
2425
- name: Run Tests
2526
run: pnpm run ci
2627
- name: Upload coverage to Codecov

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"allowSyntheticDefaultImports": true,
1111
"esModuleInterop": true,
1212
"strict": true,
13+
"skipLibCheck": true,
1314
"noImplicitAny": true,
1415
"noUnusedLocals": true,
1516
"noUnusedParameters": true,

0 commit comments

Comments
 (0)