Merge pull request #192 from InsForge/feat/diagnose-advisor-oss-routing #145
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
| name: Integration Tests (Real Project) | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Weekly on Sunday at 06:00 UTC | |
| - cron: '0 6 * * 0' | |
| push: | |
| branches: [main] | |
| jobs: | |
| integration-real: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'InsForge' }} | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build CLI | |
| run: npm run build | |
| - name: Validate required integration secrets | |
| env: | |
| INSFORGE_EMAIL: ${{ secrets.INSFORGE_EMAIL }} | |
| INSFORGE_PASSWORD: ${{ secrets.INSFORGE_PASSWORD }} | |
| INSFORGE_PROJECT_ID: ${{ secrets.INSFORGE_PROJECT_ID }} | |
| run: | | |
| set -euo pipefail | |
| missing=0 | |
| for v in INSFORGE_EMAIL INSFORGE_PASSWORD INSFORGE_PROJECT_ID; do | |
| if [ -z "${!v:-}" ]; then | |
| echo "::error title=Missing required secret::Secret $v is not configured" | |
| missing=1 | |
| fi | |
| done | |
| if [ "$missing" -ne 0 ]; then | |
| exit 1 | |
| fi | |
| - name: Authenticate and link project via CLI | |
| env: | |
| INSFORGE_EMAIL: ${{ secrets.INSFORGE_EMAIL }} | |
| INSFORGE_PASSWORD: ${{ secrets.INSFORGE_PASSWORD }} | |
| INSFORGE_PROJECT_ID: ${{ secrets.INSFORGE_PROJECT_ID }} | |
| run: | | |
| node dist/index.js --json login --email | |
| node dist/index.js --json link --project-id "${INSFORGE_PROJECT_ID}" | |
| - name: Run real-project integration tests | |
| run: npm run test:integration:real | |
| env: | |
| INTEGRATION_TEST_ENABLED: 'true' | |
| INTEGRATION_LOG_SOURCE: ${{ secrets.INSFORGE_LOG_SOURCE }} |