Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchangelWTF committed Dec 27, 2024
1 parent a5b6659 commit 1e8608f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: NPM Build & Lint
name: Bun Build & Lint

on:
workflow_dispatch:
Expand All @@ -17,17 +17,17 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
node-version: '20'
bun-version: latest

- name: Install dependencies
run: npm install
run: bun install

- name: Build
run: npm run build
run: bun run build

- name: Lint
run: npm run lint
run: bun run lint

0 comments on commit 1e8608f

Please sign in to comment.