diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbf3d4c..cff8b97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,12 +16,12 @@ jobs: with: path: ~/.pnpm-store key: node-modules-${{ hashFiles('package.json') }} - - name: Install dependencies + - name: Setup pnpm uses: pnpm/action-setup@v2 with: version: latest - run_install: | - - recursive: true + - name: Install dependencies + run: pnpm install - name: Run Tests run: pnpm run ci - name: Upload coverage to Codecov diff --git a/tsconfig.json b/tsconfig.json index d59e4f8..1eed93a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,7 @@ "allowSyntheticDefaultImports": true, "esModuleInterop": true, "strict": true, + "skipLibCheck": true, "noImplicitAny": true, "noUnusedLocals": true, "noUnusedParameters": true,