Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ jobs:
contents: read
actions: read
pull-requests: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
Expand All @@ -127,7 +128,7 @@ jobs:
- if: steps.cache.outputs.cache-hit != 'true'
run: bun install --frozen-lockfile
- name: Unit Tests
run: bun run test:unit --coverage --coverage-reporter=lcov
run: bun run test:unit
- name: Upload Coverage
uses: getsentry/codecov-action@main
with:
Expand Down Expand Up @@ -234,7 +235,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['22', '24']
node: ["22", "24"]
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
Expand All @@ -261,7 +262,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: npm-package
path: '*.tgz'
path: "*.tgz"

build-docs:
name: Build Docs
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"lint": "bunx ultracite check",
"lint:fix": "bunx ultracite fix",
"test": "bun test",
"test:unit": "bun test test/lib test/commands test/types",
"test:unit": "bun test test/lib test/commands test/types --coverage --coverage-reporter=lcov",
"test:isolated": "bun test test/isolated",
"test:e2e": "bun test test/e2e",
"generate:skill": "bun run script/generate-skill.ts",
Expand Down
Loading