patchbay/.forgejo/workflows/check.yml
matamune f795d2857c
Some checks failed
check / check (push) Failing after 35s
Install Docker CLI in CI container build
2026-05-12 21:10:00 +00:00

25 lines
483 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: |
apt-get update
apt-get install -y docker.io
docker build -t git-webhooks:ci .