Add pruned Node event handlers #818
Workflow file for this run
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: CCIP Integration Tests | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| name: CCIP Deployment Test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Check out chainlink-aptos | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: integration-tests/go.mod | |
| - name: Install Aptos CLI | |
| uses: aptos-labs/actions/install-aptos-cli@528ef7ad9427a8c0720ea3eea790a9190d6e377d # 2026-04-09 | |
| with: | |
| CLI_VERSION: 9.1.0 | |
| - name: Run CCIP smoke tests | |
| run: | | |
| cd integration-tests | |
| go test ./ccip -timeout 10m -v | |
| - name: Run deployment integration tests | |
| run: | | |
| cd integration-tests | |
| go test -p=1 -timeout=30m ./deployment/... |