Skip to content

Commit

Permalink
Added basic CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NuroDev committed Jul 28, 2024
1 parent bc1e65c commit 5ad9913
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: Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.20

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Build
run: bun run --filter '@nurodev/astro-bun' build

0 comments on commit 5ad9913

Please sign in to comment.