File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,10 +10,30 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v4
13+ - uses : actions/checkout@v4
14+ with :
15+ repository : agent-dispatch/core
16+ path : .agentdispatch-deps/core
17+ - uses : actions/checkout@v4
18+ with :
19+ repository : agent-dispatch/adapter-aws-agentcore
20+ path : .agentdispatch-deps/adapter-aws-agentcore
1321 - uses : actions/setup-node@v4
1422 with :
1523 node-version : 22
24+ - name : Pack current core
25+ run : |
26+ npm --prefix .agentdispatch-deps/core install
27+ npm --prefix .agentdispatch-deps/core run build
28+ npm --prefix .agentdispatch-deps/core pack --pack-destination "$PWD/.agentdispatch-deps"
29+ - name : Pack current AWS adapter
30+ run : |
31+ npm --prefix .agentdispatch-deps/adapter-aws-agentcore install
32+ npm --prefix .agentdispatch-deps/adapter-aws-agentcore install --no-save "$PWD"/.agentdispatch-deps/agent-dispatch-core-*.tgz
33+ npm --prefix .agentdispatch-deps/adapter-aws-agentcore run build
34+ npm --prefix .agentdispatch-deps/adapter-aws-agentcore pack --pack-destination "$PWD/.agentdispatch-deps"
1635 - run : npm install
36+ - run : npm install --no-save .agentdispatch-deps/agent-dispatch-core-*.tgz .agentdispatch-deps/agent-dispatch-adapter-aws-agentcore-*.tgz
1737 - run : npm run typecheck
1838 - run : npm test --if-present
1939 - run : npm run build
You can’t perform that action at this time.
0 commit comments