Skip to content

Commit 5bed950

Browse files
committed
ci: add package test workflow
1 parent 41b6c74 commit 5bed950

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/package-test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Package Test
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
workflow_call:
7+
8+
jobs:
9+
pack-install-verify:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
- uses: actions/setup-node@v6
14+
with:
15+
node-version: '20.x'
16+
- run: npm ci
17+
- run: npm run build
18+
- run: npm pack
19+
- run: npm install -g aws-agentcore-*.tgz
20+
- run: agentcore --version

0 commit comments

Comments
 (0)