Skip to content

Commit

Permalink
feat: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
RPDeshaies committed Dec 4, 2024
1 parent 392d1fc commit 040b316
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches:
- "**"

jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v2
# Use Bun
- name: Use Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.38
# Install
- name: Install
run: bun install
# Build
- name: Build
run: bun run build

0 comments on commit 040b316

Please sign in to comment.