fix: throw original error in pRetry #34
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: Integration | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Init | |
| run: make github-init | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test | |
| env: | |
| RINKEBY_PRIVATE_KEY: ${{ secrets.RINKEBY_PRIVATE_KEY }} |