chore: migrate from node to bun

This commit is contained in:
2026-03-25 10:17:14 +01:00
parent e776d49a77
commit 04d2299a4c
6 changed files with 301 additions and 1839 deletions

View File

@@ -12,14 +12,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
node-version: '20'
cache: 'npm'
bun-version: latest
- name: Install dependencies
run: npm ci
run: bun install --frozen-lockfile
- name: Run lint
run: npm run lint
run: bun run lint