fix: enhance handleTimeout function to emit correct txId in OnTimeout… #90
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: Test | |
| on: [push] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.16 | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.16 | |
| id: go | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '25' | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v3 | |
| - name: Resolve dependencies | |
| run: npm install | |
| - name: Setup ganache-cli | |
| run: NO_GEN_CODE=1 ./script/setup.sh development | |
| - name: Test | |
| run: make test |