diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cdbb68e..9a739a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install dependencies run: yarn ci - - name: Run tests and coverage - run: yarn test:coverage + - name: Run tests + run: yarn test - name: Upload coverage to Codecov uses: codecov/codecov-action@v2 diff --git a/package.json b/package.json index b64e3d6..2059406 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "release": "pika publish", "start": "vercel dev", "test": "yarn test:lint && yarn test:typecheck && yarn test:unit", - "test:coverage": "yarn test:unit && codecov", "test:lint": "eslint \"./src/**/*.{j,t}s?(x)\"", "test:typecheck": "tsc --noEmit", "test:unit": "jest",