diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb4b0ac58..9ed288295 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ jobs: with: fetch-depth: 0 - uses: ./.github/actions/prepare + - run: pnpm build - run: git config user.name "${GITHUB_ACTOR}" - run: git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - env: diff --git a/.npmignore b/.npmignore index 681007abe..010831c6e 100644 --- a/.npmignore +++ b/.npmignore @@ -7,4 +7,5 @@ coverage/ cspell.json pnpm-lock.yaml +src tsconfig*.json diff --git a/vitest.config.ts b/vitest.config.ts index f6fe94f69..ec79b6747 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -5,6 +5,7 @@ export default defineConfig({ clearMocks: true, coverage: { all: true, + exclude: ["lib"], include: ["src"], reporter: ["html", "lcov"],