Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
jlightner
1dd1e992c6 ci: use host-accessible instance URL
All checks were successful
CI / test (push) Successful in 17s
2026-04-03 06:23:24 +00:00
jlightner
b4c1efc4a6 ci: test Docker DNS resolution
Some checks failed
CI / test (push) Failing after 35s
2026-04-03 06:21:55 +00:00
jlightner
d54924d2ef ci: retry CI run
Some checks failed
CI / test (push) Failing after 37s
2026-04-03 06:19:10 +00:00
jlightner
8a7e5bce8c ci: add Forgejo Actions workflow for test automation
Some checks failed
CI / test (push) Failing after 9m19s
Runs TypeScript type checking and vitest on push/PR to master.
2026-04-03 06:06:32 +00:00

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

@ -0,0 +1,22 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Run tests
run: npm test