Files
ttrpg-initiative-tracker/.github/workflows/ci.yml
T
david raistrick fa19913e23 ci: add GitHub Actions workflow + dev docs + test:all script
- .github/workflows/ci.yml: runs shared + server tests on push/PR
- docs/DEVELOPMENT.md: setup, run, test, architecture, status
- package.json: test:all script (shared + server suites)
2026-06-28 17:14:51 -04:00

23 lines
441 B
YAML

name: CI
on:
push:
branches: [main, rework-backend]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- run: npm ci
- name: shared tests
run: npm test --workspace shared
- name: server tests
run: npm test --workspace server