We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2513e7c commit f556a98Copy full SHA for f556a98
.github/workflows/ci.yml
@@ -16,11 +16,12 @@ jobs:
16
with:
17
path: ~/.pnpm-store
18
key: node-modules-${{ hashFiles('package.json') }}
19
- - name: Install dependencies
+ - name: Setup pnpm
20
uses: pnpm/action-setup@v2
21
22
version: latest
23
- run_install: true
+ - name: Install dependencies
24
+ run: pnpm install
25
- name: Run Tests
26
run: pnpm run ci
27
- name: Upload coverage to Codecov
tsconfig.json
@@ -10,6 +10,7 @@
10
"allowSyntheticDefaultImports": true,
11
"esModuleInterop": true,
12
"strict": true,
13
+ "skipLibCheck": true,
14
"noImplicitAny": true,
15
"noUnusedLocals": true,
"noUnusedParameters": true,
0 commit comments