This commit is contained in:
parent
47bf8e2a2b
commit
7ecf4e54f2
2 changed files with 26 additions and 16 deletions
26
.forgejo/workflows/ci.yml
Normal file
26
.forgejo/workflows/ci.yml
Normal 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
|
||||
|
|
@ -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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue