Files
ts3gotify/.gitea/workflows/ci.yaml
Timo Behrendt 94b3680f0e
All checks were successful
CD / Test (push) Successful in 24s
CD / Build and push (push) Successful in 1m50s
!refactor: replace node with bun (#3)
Reviewed-on: #3
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-01-07 18:06:12 +01:00

26 lines
446 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