hestia/.github/workflows/pr.yaml
Baobeld 7f8d453a30
Chore: create initial cd workflow (#55)
* use .tool-versions file for keeping track of bun version to use

* create deploy workflow
2025-01-16 14:00:21 -05:00

27 lines
715 B
YAML

name: PR Gate
on:
pull_request:
branches: ['*']
jobs:
checks:
name: Checks
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Bun Setup
uses: oven-sh/setup-bun@v2
with:
bun-version-file: '.tool-versions'
- name: Install
run: bun install
- name: Lint
run: bun lint
- name: Test
run: bun test
- name: Build
run: bun run build
- name: Svelte Check
run: bun check
- name: Prisma Check
run: bun prisma:validate