-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (87 loc) · 3.02 KB
/
local-e2e.yml
File metadata and controls
103 lines (87 loc) · 3.02 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Local E2E
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
on:
workflow_dispatch:
schedule:
- cron: "17 8 * * 1"
jobs:
local-e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout docs
uses: actions/checkout@v4
with:
path: agentdispatch/agentdispatch-docs
- name: Checkout core
uses: actions/checkout@v4
with:
repository: agent-dispatch/core
path: agentdispatch/agentdispatch-core
- name: Checkout store-sqlite
uses: actions/checkout@v4
with:
repository: agent-dispatch/store-sqlite
path: agentdispatch/agentdispatch-store-sqlite
- name: Checkout adapter-aws-agentcore
uses: actions/checkout@v4
with:
repository: agent-dispatch/adapter-aws-agentcore
path: agentdispatch/agentdispatch-adapter-aws-agentcore
- name: Checkout worker-agentcore
uses: actions/checkout@v4
with:
repository: agent-dispatch/worker-agentcore
path: agentdispatch/agentdispatch-worker-agentcore
- name: Checkout sdk-js
uses: actions/checkout@v4
with:
repository: agent-dispatch/sdk-js
path: agentdispatch/agentdispatch-sdk-js
- name: Checkout mcp-server
uses: actions/checkout@v4
with:
repository: agent-dispatch/mcp-server
path: agentdispatch/agentdispatch-mcp-server
- name: Checkout cli
uses: actions/checkout@v4
with:
repository: agent-dispatch/cli
path: agentdispatch/agentdispatch-cli
- name: Checkout adapter-template
uses: actions/checkout@v4
with:
repository: agent-dispatch/adapter-template
path: agentdispatch/agentdispatch-adapter-template
- name: Checkout website
uses: actions/checkout@v4
with:
repository: agent-dispatch/website
path: agentdispatch/agentdispatch-website
- name: Checkout GitHub profile
uses: actions/checkout@v4
with:
repository: agent-dispatch/.github
path: agentdispatch/agentdispatch-github-profile
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Verify launch evidence
run: npm --prefix agentdispatch/agentdispatch-docs run verify:launch
env:
AGENTDISPATCH_VERIFY_INSTALL: "1"
AGENTDISPATCH_LAUNCH_EVIDENCE_DIR: ${{ github.workspace }}
- name: Upload launch evidence reports
uses: actions/upload-artifact@v4
with:
name: agentdispatch-launch-evidence
path: |
agentdispatch-local-e2e-report.json
agentdispatch-npm-status-report.json
agentdispatch-publish-dry-run-report.json
agentdispatch-security-audit-report.json
agentdispatch-published-smoke-report.json
agentdispatch-release-status.json
agentdispatch-launch-summary.md
agentdispatch-push-plan.md
if-no-files-found: error