Run full checks in Forgejo CI
Some checks failed
ci / check (push) Failing after 18s

This commit is contained in:
matamune 2026-05-12 21:34:13 +00:00
parent 47bf8e2a2b
commit 7ecf4e54f2
Signed by: matamune
GPG key ID: 3BB8E7D3B968A324
2 changed files with 26 additions and 16 deletions

26
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,26 @@
name: ci
on:
push:
branches:
- main
workflow_dispatch:
jobs:
check:
runs-on: bun
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run check:types
- name: Test
run: bun run test
- name: Release check
run: bun run --filter @peezy.tech/codex-flows release:check

View file

@ -1,16 +0,0 @@
name: smoke
on:
push:
branches:
- main
workflow_dispatch:
jobs:
runner-smoke:
runs-on: bun
steps:
- name: Check runner
run: |
bun --version
echo "Forgejo runner is online"