fix(tx-submitter): update gas fee cap when replacing tip with min tip… #843
This file contains 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: Tx-submitter | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "tx-submitter/**" | |
- ".github/workflows/tx-submitter.yaml" | |
pull_request: | |
paths: | |
- "build/**" | |
- "bindings/**" | |
- "node/**" | |
- "ops/l2-genesis/**" | |
- "tx-submitter/**" | |
- ".github/workflows/tx-submitter.yaml" | |
defaults: | |
run: | |
working-directory: "tx-submitter" | |
jobs: | |
check: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.x | |
- name: Lint | |
run: | | |
rm -rf $HOME/.cache/golangci-lint | |
make lint | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.x | |
- name: Run build | |
run: make build | |
- name: Run tests | |
run: make test |