2026-05-12 21:06:22 +00:00
|
|
|
name: check
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- main
|
|
|
|
|
pull_request:
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
check:
|
|
|
|
|
runs-on: bun
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- name: Install
|
|
|
|
|
run: bun install --frozen-lockfile
|
|
|
|
|
- name: Typecheck
|
|
|
|
|
run: bun run check:types
|
|
|
|
|
- name: Test
|
|
|
|
|
run: bun test
|
2026-05-12 21:07:00 +00:00
|
|
|
- name: Build container
|
|
|
|
|
run: docker build -t git-webhooks:ci .
|