aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/deploy.yml
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2026-01-01 16:56:51 +0100
committerGitHub <noreply@github.com>2026-01-01 16:56:51 +0100
commit33744e44ceaf3825da451ba38281fd84b255de80 (patch)
treee6c080d7e8e6f56652c2269a380eff40b899a065 /.github/workflows/deploy.yml
parente07fe372bc20d16eb590b68ed256007312b3801a (diff)
parent01ecb948edb015613e05bc2b6da4021137957745 (diff)
Merge pull request #286 from AttorneyOnline/bnnuy
Bnnuy
Diffstat (limited to '.github/workflows/deploy.yml')
-rw-r--r--.github/workflows/deploy.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 296323c..1321bdc 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -12,16 +12,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
- uses: actions/setup-node@v6
+ uses: oven-sh/setup-bun@v2
with:
- node-version: 20
- cache: 'npm'
+ bun-version: latest
- name: Install Dependencies
- run: npm install
+ run: bun install
- name: Build Project
- run: npm run build
+ run: bun run build
- name: Run Tests
- run: npm test
+ run: bun test
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.7.6
with: