Skip to content

Commit 4a1ff9e

Browse files
committed
chore: switch from Node.js to Bun for dependency management and build process
1 parent 95d69d6 commit 4a1ff9e

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: actions/setup-node@v4
15+
- uses: oven-sh/setup-bun@v2
1616
with:
17-
node-version: 'lts/*'
18-
- run: npm ci
19-
- run: npm run prepublishOnly --workspace=packages/vue-spring-bottom-sheet
20-
- run: npx semantic-release
17+
bun-version: latest
18+
19+
- name: Install dependencies
20+
run: bun install
21+
22+
- name: Build package
23+
run: bun run prepublishOnly
24+
25+
- name: Run semantic-release
26+
run: bunx semantic-release
2127
env:
2228
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2329
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)