From caf43ba252068e1cb2fc71b666ec18b009cb177c Mon Sep 17 00:00:00 2001 From: Webber Date: Thu, 18 Apr 2024 18:20:30 +0200 Subject: [PATCH] chore: cleanup --- .github/workflows/main.yaml | 2 +- .github/workflows/pull-request.yaml | 2 +- package.json | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a02b091..11bac5b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -24,7 +24,7 @@ jobs: run: bun run lint - name: Tests - run: bun run test --coverage + run: bun run coverage - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 470ee93..5abef67 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -24,7 +24,7 @@ jobs: run: bun run lint - name: Tests - run: bun run test --coverage + run: bun run coverage - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4.0.1 diff --git a/package.json b/package.json index 3140108..32a4445 100644 --- a/package.json +++ b/package.json @@ -11,10 +11,10 @@ "start": "bun run dist/server.js", "test": "vitest", "coverage": "vitest --coverage", - "lint": "bun eslint src/ --ext .js,.ts,.tsx,.mts --max-warnings 0", - "format": "bun prettier --write .", - "fix": "bun format && bun run lint --fix", - "typecheck": "bun tsc --noEmit", + "lint": "eslint src/ --ext .js,.ts,.tsx,.mts --max-warnings 0", + "format": "prettier --write .", + "fix": "bun run format && bun run lint --fix", + "typecheck": "tsc --noEmit", "types": "bun --env-file .env type-writer", "prepare": "husky install" },