delqhi/sin-github-issues
0
1name: Agent CI2 3on:4 push:5 branches: [main]6 pull_request:7 workflow_dispatch:8 9jobs:10 build-and-verify:11 runs-on: ubuntu-latest12 steps:13 - name: Checkout14 uses: actions/checkout@v415 16 - name: Setup Node17 uses: actions/setup-node@v418 with:19 node-version: '22'20 cache: npm21 22 - name: Install dependencies23 run: npm install24 25 - name: Build26 run: npm run build27 28 - name: Print card29 run: node dist/src/cli.js print-card30 31 - name: Agent help32 run: node dist/src/cli.js run-action '{"action":"agent.help"}'33 34 - name: Agent health35 run: node dist/src/cli.js run-action '{"action":"sin.github.health"}'36 