chore: Bump lodash in the npm_and_yarn group across 1 directory (#232) #61
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: Cross-Language Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| run-tests: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Install Go dependencies | |
| shell: bash | |
| run: | | |
| (cd tests/cross_language/a2a/go_ts/go_client && go mod tidy) | |
| (cd tests/cross_language/a2a/ts_go/go_backend && go mod tidy) | |
| - name: Build packages | |
| run: npm run build | |
| - name: Run cross-language integration tests | |
| run: npm run test:cross-language |