This commit is contained in:
2026-01-02 20:40:55 +08:00
parent eb38ca1edc
commit 7cb3820687
3 changed files with 13 additions and 10 deletions

View File

@@ -17,17 +17,20 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
node-version: 24
cache: "bun"
- name: Install Bun
run: npm install -g bun
- name: Install dependencies
run: npm ci
run: bun install
- name: Check Linting
run: npm run lint
run: bun run lint
- name: Check Format
run: npm run format
run: bun run format
- name: Playgourd build check
run: npm run build
- name: Playgroud build check
run: bun run build