Skip to content

Commit

Permalink
Add basic PR CI
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed May 30, 2024
1 parent 2791108 commit 80bc3b7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- run: bun install --frozen-lockfile
- run: bun run build
- run: bun run lint
- run: bun run prettier --check .
- uses: actions/upload-artifact@v2
with:
name: build
path: out

0 comments on commit 80bc3b7

Please sign in to comment.