fix: Bump e2e tested versions for HarnessAgent, bedrock and google adk and fix orchestrion query for harness agent #3705
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
| name: Enforce pnpm | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| reject-npm-lockfile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Reject npm lockfiles | |
| run: | | |
| if git ls-files | grep -E '(^|/)package-lock\.json$'; then | |
| echo "Remove package-lock.json and use pnpm." | |
| exit 1 | |
| fi |