theia/.github/workflows/ci.yml
Benjamin Palko 9fb856e43f
All checks were successful
Deployment / Deploy Storybook (push) Successful in 5m35s
mise
2025-06-30 09:11:42 -04:00

37 lines
919 B
YAML

name: PR Gate
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
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: 'mise.toml'
- name: Install
run: bun install
- name: Lint
run: bun lint
- name: Sync
run: bun run build
- name: Svelte Check
run: bun check
- name: Prisma Check
run: bun prisma:validate
- name: Test
run: bun run test:unit