-
Notifications
You must be signed in to change notification settings - Fork 2
Merge persistant server preference #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 9 commits
d9a05a4
deff0c7
c9fa15f
7d530e9
f82d218
bfe51c9
ae94cf0
25e9483
e8a60e1
4527b44
12764b6
79a3093
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 1.3.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,15 +17,14 @@ jobs: | |
| uses: actions/checkout@v5 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| - name: Setup Bun package manager | ||
| uses: oven-sh/setup-bun@v2 | ||
| with: | ||
| node-version: '22.x' | ||
| cache: 'yarn' | ||
| - name: Install dependencies | ||
| run: yarn install --frozen-lockfile | ||
| bun-version-file: ".bun-version" | ||
| - name: Install production dependencies | ||
| run: bun install --production --frozen-lockfile | ||
| - name: Run tests with coverage | ||
| run: yarn test:coverage | ||
| run: bun test:coverage | ||
|
||
| - name: Upload coverage to Codecov | ||
| uses: codecov/codecov-action@v5 | ||
| with: | ||
|
|
||
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The develop CI job executes
bun test:coverage, but thetest:coverageentry is a package script, not a Bun test file. Withoutbun runthe command fails before Jest starts, so the coverage job will break. Switch the step tobun run test:coverage(or callnpx jestdirectly).Useful? React with 👍 / 👎.