test runner services
Some checks failed
Build & Deploy / build (push) Failing after 2s
Build & Deploy / deploy (push) Has been skipped
CI / test-and-build (push) Successful in 1m36s

This commit is contained in:
djoser
2026-07-27 13:25:25 +00:00
parent 9c99027ea6
commit c202734a8c
4 changed files with 57 additions and 3 deletions

32
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,32 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Type-check
run: npm run typecheck
- name: Tests
run: npm test
- name: Build
run: npm run build