-
Notifications
You must be signed in to change notification settings - Fork 12
64 lines (55 loc) · 1.82 KB
/
integration-real-project.yml
File metadata and controls
64 lines (55 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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 }}