Files
ts3gotify/.gitea/workflows/ci.yaml
Timo Behrendt 57dcb7ccca
Some checks failed
CI / Test (pull_request) Failing after 22s
add test script and ci
2025-03-25 21:59:32 +01:00

29 lines
521 B
YAML

name: CI
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: ".bun-version"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run lint
run: bun run check:code
- name: Run spellcheck
run: bun run check:spell
- name: Run integration tests
run: bun run test:integration