Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
webbertakken committed Apr 18, 2024
1 parent 61055cd commit caf43ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit caf43ba

Please sign in to comment.