Bump github.com/onsi/ginkgo/v2 from 2.27.1 to 2.27.2 #120
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: E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| e2e_tests: | |
| name: e2e_tests | |
| runs-on: ubuntu-22.04 | |
| if: (github.actor != 'dependabot[bot]') | |
| steps: | |
| - name: Checkout icm-relayer repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Write token to file | |
| env: | |
| CUBIST_SIGNER_TOKEN: ${{ secrets.CUBIST_SIGNER_TOKEN }} | |
| run: | | |
| echo $CUBIST_SIGNER_TOKEN | base64 --decode > e2e_session.json | |
| - name: Run E2E Tests | |
| run: ./scripts/e2e_test.sh |