dependabot(actions): bump actions/upload-artifact from 4 to 7 #327
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: 'Deposit and Withdrawal End To End Test' | |
| on: | |
| pull_request: | |
| jobs: | |
| deposit-withdrawal-e2e-tests: | |
| name: 'Deposit and Withdrawal E2E tests' | |
| runs-on: ubuntu-latest | |
| container: | |
| image: tokamaknetwork/thanos-ci-builder:latest | |
| steps: | |
| - name: Check CPUs | |
| run: lscpu && echo | |
| - name: Checkout | |
| uses: actions/checkout@v4.1.0 | |
| - name: Add repository to git safe directories | |
| run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
| - name: Git submodules | |
| run: git submodule update --init --recursive | |
| - name: Setup | |
| run: | | |
| make devnet-allocs | |
| - name: Run deposit withdrawal e2e tests | |
| run: make test-deposit-withdrawal | |
| working-directory: op-e2e | |
| - name: Run test actions e2e tests | |
| run: make test-e2e | |
| working-directory: op-e2e |