From 150fa0ae31fa3894646e08166a7362c97fce5467 Mon Sep 17 00:00:00 2001 From: Danil Tarasov Date: Sun, 22 Jan 2023 13:23:45 +0300 Subject: [PATCH] test(types): fix ci step --- .github/workflows/test.yml | 1 + vite.config.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f68dac5..eff38bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,7 @@ jobs: - name: Build, Test & Coverage run: | npm run build + npm run test:types npm run test:coverage - name: Coveralls uses: coverallsapp/github-action@master diff --git a/vite.config.ts b/vite.config.ts index 613e963..1a480ac 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -11,7 +11,8 @@ export default defineConfig({ include: ['src/**/*.ts'] }, typecheck: { - include: ['**/*.type.{test,spec}.{ts,js}'] + include: ['src/**/*.type.spec.ts'], + ignoreSourceErrors: true } } })