skill-e2e #332
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Purpose: E2E tests for skill installation and MCP registration. | |
| # n8n-delegated per mandate M1 (see AGENTS.md §M1). | |
| # Heavy work (go test -tags=e2e, binary build, mcp list) runs on the OCI | |
| # free-tier VM via n8n. The only runner-side work is a lightweight `go vet` | |
| # pre-check (~2s). | |
| name: skill-e2e | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'cmd/sin-code/internal/skillmgr/**' | |
| - 'cmd/sin-code/internal/mcpclient/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: skill-e2e-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| delegate: | |
| name: Delegate skill E2E to n8n | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 2 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Trigger n8n webhook | |
| env: | |
| N8N_CI_WEBHOOK_URL: ${{ secrets.N8N_CI_WEBHOOK_URL }} | |
| run: | | |
| if [[ -z "$N8N_CI_WEBHOOK_URL" ]]; then | |
| echo "::error::N8N_CI_WEBHOOK_URL secret is not configured" | |
| exit 1 | |
| fi | |
| curl -fsS -X POST \ | |
| -H "Content-Type: application/json" \ | |
| -d "{\"workflow\":\"skill-e2e\",\"ref\":\"${{ github.ref }}\",\"sha\":\"${{ github.sha }}\",\"repo\":\"${{ github.repository }}\",\"actor\":\"${{ github.actor }}\"}" \ | |
| "$N8N_CI_WEBHOOK_URL" | |
| - name: Local pre-check (go vet) | |
| run: | | |
| go version | |
| go vet ./cmd/sin-code/internal/skillmgr/... | |
| go vet ./cmd/sin-code/internal/mcpclient/... | |
| echo "Heavy skill E2E work delegated to n8n." |