From fccc1315f4115fc7adfedd78fcdf9615b02e9ba5 Mon Sep 17 00:00:00 2001 From: Geoff Date: Mon, 24 Jun 2024 22:12:57 -0400 Subject: [PATCH] Generate code coverage reports and upload to Codecov --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ .gitignore | 1 + package.json | 2 ++ vitest.config.ts | 12 ++++++++++++ 4 files changed, 35 insertions(+) create mode 100644 vitest.config.ts diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1abb4e5a..c1b8d325 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,3 +14,23 @@ jobs: - run: npm install && npm test && npm run lint env: CI: true + + codecov: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20.x + + - name: Install deps + run: npm install + + - name: Generate coverage report + run: npm run test:coverage + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4.0.1 + with: + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.gitignore b/.gitignore index 33ea2707..e3b6f899 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules/ npm-debug.log package-lock.json tmp/ +coverage/ diff --git a/package.json b/package.json index 7bf3023f..472cc7a7 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "@types/node": "^18.7.14", "@typescript-eslint/eslint-plugin": "^7.1.1", "@typescript-eslint/parser": "^7.1.1", + "@vitest/coverage-istanbul": "^1.6.0", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", @@ -54,6 +55,7 @@ "test": "npm run build && npm run test:types && npm run test:vitest", "test:types": "tsc --noEmit && tsc --project ./test/tsconfig.json --noEmit", "test:vitest": "vitest run", + "test:coverage": "vitest run --coverage", "watch": "npm run build -- --watch" }, "keywords": [ diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 00000000..4e4902d0 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from 'vitest/config' + +export default defineConfig({ + test: { + coverage: { + enabled: true, + include: ['src'], + provider: 'istanbul', + reporter: ['cobertura'], + }, + }, +})