From 8c39b42ed4a2a1bfca9baf628d671ac11e7c74fe Mon Sep 17 00:00:00 2001 From: Paolo Insogna Date: Tue, 27 Dec 2022 07:48:07 +0100 Subject: [PATCH] chore: CI improvement --- .github/workflows/ci.yml | 6 +++--- tsconfig.json | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) 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,