Skip to content

Commit d84e375

Browse files
committed
chore!: switch from node to bun
also includes dependencies version bump to latest to close old dependabot npm pull requests
1 parent 1d97eb5 commit d84e375

File tree

5 files changed

+933
-5749
lines changed

5 files changed

+933
-5749
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "npm" # See documentation for possible values
8+
- package-ecosystem: "bun" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "weekly"

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
- name: Clone repository
1717
uses: actions/checkout@v3
1818

19-
- name: Setup Node.js environment
20-
uses: actions/setup-node@v3
19+
- name: Setup bun
20+
uses: oven-sh/setup-bun@v2
2121
with:
22-
node-version: "20.x"
22+
bun-version: "1.x"
2323

2424
- name: Install dependencies
25-
run: npm ci
25+
run: bun install
2626

2727
- name: Build
28-
run: npm run build
28+
run: bun run build
2929

3030
- name: Upload to Deno Deploy
3131
uses: denoland/deployctl@v1

0 commit comments

Comments
 (0)