Skip to content

Commit 515e598

Browse files
committed
Minor fixes
1 parent 3ad4af5 commit 515e598

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ on: [push, pull_request, workflow_dispatch]
33

44
jobs:
55
build:
6-
name: Build and test
6+
name: Build, test, and lint
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
1010
- uses: oven-sh/setup-bun@v1
1111
- run: bun install --frozen-lockfile
1212
- run: bun run build
1313
- run: bun run test
14+
- run: bun run lint
1415
- uses: codecov/codecov-action@v4
1516
env:
1617
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"docs": "typedoc",
4848
"test": "bun test",
4949
"watch": "bun test --watch",
50-
"lint": "bunx oxlint@latest",
50+
"lint": "bunx oxlint@latest --format=github",
5151
"publish:npm": "np",
5252
"codesandbox-ci": "bash .codesandbox/ci.sh",
5353
"pretty-print": "prettier --write '*.{html,json,ts}' 'src/*.*'"

0 commit comments

Comments
 (0)