patchbay/.forgejo/workflows/check.yml
matamune 205c7196c2
Some checks failed
check / check (push) Failing after 7s
Check git-webhooks container build
2026-05-12 21:07:00 +00:00

22 lines
407 B
YAML

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
- name: Build container
run: docker build -t git-webhooks:ci .