telegrambot/.gitea/workflows/ci.yml
alisaza 9615f6cb1e
Some checks failed
CI / Typecheck and test (push) Successful in 8s
Deploy / Typecheck and test (push) Successful in 8s
Deploy / Deploy to VPS (push) Failing after 2s
fix CI test glob so npm scripts find *.test.ts files.
2026-09-13 14:49:42 +03:30

28 lines
417 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Typecheck and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test