Files
git-agent-sync/.gitea/workflows/ci.yml
7000pctAUTO 7c74080a2d
Some checks failed
/ test (push) Failing after 46s
fix: Simplify CI workflow to isolate issue
2026-02-03 08:29:29 +00:00

24 lines
378 B
YAML

on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install and build
run: |
npm install
npm run build
- name: Run tests
run: npm test