Files
finance-app/.gitea/workflows/ci.yml
T
siddharthd d384cc96f6
ci / lint-test (push) Failing after 1m33s
ci: add Gitea Actions lint/test workflow
2026-07-19 00:59:22 +10:00

20 lines
340 B
YAML

name: ci
on:
push:
pull_request:
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm test