Files
ts3gotify/.gitea/workflows/ci.yaml
Timo Behrendt c792f92f73
Some checks failed
CI / Test (pull_request) Failing after 8s
ci: pin varios actions to a proper semver version
2026-02-14 18:58:48 +01:00

26 lines
540 B
YAML

name: CI
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # v2.1.2
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