-
Notifications
You must be signed in to change notification settings - Fork 295
Add integration testing workflow for agentics repository compatibility with build system improvements #176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pelikhan
merged 12 commits into
main
from
copilot/fix-6898bf03-acd7-40e4-a9b3-6e2f03d25576
Aug 21, 2025
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7ae4833
Initial plan
Copilot 6ab13ff
Add integration test workflow for agentics repository
Copilot 18d1a8b
Add workflow_dispatch support to integration test workflow
Copilot 9c8a297
Merge branch 'main' into copilot/fix-6898bf03-acd7-40e4-a9b3-6e2f03d2…
pelikhan bcbc48c
Fix TypeScript typing issues in .cjs files
Copilot 8f88f0c
Remove redundant GitHub token setup step from integration test workflow
Copilot d7611f6
Merge branch 'main' into copilot/fix-6898bf03-acd7-40e4-a9b3-6e2f03d2…
pelikhan 2fc3b1e
Update deps-dev target to use npm ci instead of npm install --package…
Copilot b84e8f9
Remove final validation step from integration test workflow
pelikhan e0e07df
Merge branch 'copilot/fix-6898bf03-acd7-40e4-a9b3-6e2f03d25576' of ht…
pelikhan a054019
Add concurrency configuration to CI workflow
pelikhan 3349c84
add ci-prefix
pelikhan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| name: Integration Test Agentics | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| integration-test-agentics: | ||
| name: Test Agentics Repository Integration | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Go | ||
| uses: actions/setup-go@v5 | ||
| with: | ||
| go-version-file: go.mod | ||
| cache: true | ||
|
|
||
| - name: Verify dependencies | ||
| run: go mod verify | ||
|
|
||
| - name: Install development dependencies | ||
| run: make deps-dev | ||
|
|
||
| - name: Build gh-aw binary | ||
| run: make build | ||
|
|
||
| - name: Verify GitHub CLI is available | ||
| run: | | ||
| gh --version | ||
| echo "GitHub CLI is available" | ||
|
|
||
| - name: Install gh-aw CLI extension locally | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| run: | | ||
| echo "Installing gh-aw extension locally..." | ||
| make install | ||
|
|
||
| - name: Verify gh-aw extension installation | ||
| run: | | ||
| gh aw --help | ||
| gh aw version | ||
|
|
||
| - name: Install workflows from agentics repository | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| run: | | ||
| echo "Installing workflows from githubnext/agentics..." | ||
| gh aw install githubnext/agentics | ||
| echo "Successfully installed agentics workflows" | ||
|
|
||
| - name: List installed workflows | ||
| run: | | ||
| echo "Listing installed workflows..." | ||
| gh aw list | ||
|
|
||
| - name: Recompile all workflows | ||
| run: | | ||
| echo "Recompiling all installed workflows..." | ||
| make recompile | ||
| echo "Successfully recompiled all workflows" | ||
|
|
||
| - name: Check for compilation artifacts | ||
| run: | | ||
| echo "Checking for generated .lock.yml files..." | ||
| find .github/workflows -name "*.lock.yml" | head -10 || echo "No lock files found yet" | ||
|
|
||
| - name: Verify no compilation errors | ||
| run: | | ||
| echo "Verifying workflow compilation completed without errors..." | ||
| if [ -n "$(find .github/workflows -name "*.md" -newer .github/workflows/*.lock.yml 2>/dev/null)" ]; then | ||
| echo "Warning: Some markdown files may be newer than their compiled versions" | ||
| fi | ||
|
|
||
| - name: Display integration test summary | ||
| if: always() | ||
| run: | | ||
| echo "=== Integration Test Summary ===" | ||
| echo "Repository: githubnext/agentics" | ||
| echo "Workflows installed and compiled successfully" | ||
| echo "All validations passed" | ||
| ls -la .github/workflows/*.lock.yml 2>/dev/null || echo "Note: Check workflow compilation status above" | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.