Skip to content

Commit 938ef4d

Browse files
authored
chore: Update publish workflow to use Bun for package installation (#9)
1 parent 106e4c9 commit 938ef4d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
with:
1212
node-version-file: ".tool-versions"
1313
registry-url: "https://registry.npmjs.org"
14-
- run: npm install
14+
- uses: oven-sh/setup-bun@v2
15+
with:
16+
bun-version-file: ".tool-versions"
17+
- run: bun install --frozen-lockfile
1518
- run: npm run check
1619
- run: npm run build
1720
- run: npm publish

0 commit comments

Comments
 (0)