Skip to content

Commit e66d44a

Browse files
committed
chore: minor updates
1 parent d961b2a commit e66d44a

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: CI
22

33
on:
44
push:
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
fetch-depth: 0
1717

18-
- name: Set Node.js
18+
- name: Setup Node.js
1919
uses: actions/setup-node@v4
2020
with:
2121
registry-url: 'https://registry.npmjs.org'
@@ -43,6 +43,6 @@ jobs:
4343
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
4444

4545
- name: Create GitHub release
46-
run: npx changelogithub
46+
run: bunx changelogithub
4747
env:
4848
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"typescript.tsdk": "node_modules/typescript/lib",
3-
// Disable the default formatter, use eslint instead
43
"prettier.enable": false,
54
"editor.defaultFormatter": "biomejs.biome",
65
"editor.formatOnSave": true,

pkgx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
dependencies:
2-
bun.sh: ^1.1.27
2+
bun.sh: ^1.1.29

test/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect, it } from 'bun:test'
22

3-
describe('should', () => {
4-
it('exported', () => {
3+
describe('my package', () => {
4+
it('should pass', () => {
55
expect(1).toEqual(1)
66
})
77
})

0 commit comments

Comments
 (0)