-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update_mainnet_deployment
- Loading branch information
Showing
206 changed files
with
2,165 additions
and
2,450 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
.github/workflows/bridge-ui-ci.yml → .github/workflows/bridge-ui--ci.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
name: Bridge UI Build and Checks | ||
|
||
on: | ||
workflow_call | ||
on: workflow_call | ||
|
||
jobs: | ||
build: | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,12 @@ on: | |
pull_request: | ||
paths: | ||
- "packages/eventindexer/**" | ||
- "go.mod" | ||
- "go.sum" | ||
|
||
jobs: | ||
lint-eventindexer: | ||
name: lint | ||
name: lint-eventindexer | ||
runs-on: [taiko-runner] | ||
steps: | ||
- uses: actions/setup-go@v5 | ||
|
@@ -30,7 +32,7 @@ jobs: | |
|
||
test-eventindexer: | ||
runs-on: [taiko-runner] | ||
needs: lint | ||
needs: lint-eventindexer | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -54,7 +56,7 @@ jobs: | |
|
||
push-eventindexer-docker-image: | ||
# only push docker image on PR merge to main | ||
if: ${{ github.event }} == 'push' | ||
if: ${{ github.event == 'push' && github.ref == 'refs/heads/main' }} | ||
name: Build and push docker image | ||
runs-on: [taiko-runner] | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,12 @@ on: | |
pull_request: | ||
paths: | ||
- "packages/guardian-prover-health-check/**" | ||
- "go.mod" | ||
- "go.sum" | ||
|
||
jobs: | ||
lint: | ||
name: lint | ||
lint-guardian-prover-health-check: | ||
name: lint-guardian-prover-health-check | ||
runs-on: [taiko-runner] | ||
steps: | ||
- uses: actions/setup-go@v5 | ||
|
@@ -28,9 +30,9 @@ jobs: | |
working-directory: ./packages/guardian-prover-health-check | ||
args: --config=.golangci.yml --timeout=4m | ||
|
||
test: | ||
test-guardian-prover-health-check: | ||
runs-on: [taiko-runner] | ||
needs: lint | ||
needs: lint-guardian-prover-health-check | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -52,9 +54,9 @@ jobs: | |
files: ./packages/guardian-prover-health-check/coverage.txt | ||
flags: guardian-prover-health-check | ||
|
||
push-docker-image: | ||
push-guardian-prover-health-check-docker-image: | ||
# only push docker image on PR merge to main | ||
if: ${{ github.event }} == 'push' | ||
if: ${{ github.event == 'push' && github.ref == 'refs/heads/main' }} | ||
name: Build and push docker image | ||
runs-on: [taiko-runner] | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,12 @@ on: | |
pull_request: | ||
paths: | ||
- "packages/relayer/**" | ||
- "go.mod" | ||
- "go.sum" | ||
|
||
jobs: | ||
lint-relayer: | ||
name: lint | ||
name: lint-relayer | ||
runs-on: [taiko-runner] | ||
steps: | ||
- uses: actions/setup-go@v5 | ||
|
@@ -30,7 +32,7 @@ jobs: | |
|
||
test-relayer: | ||
runs-on: [taiko-runner] | ||
needs: lint | ||
needs: lint-relayer | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -54,7 +56,7 @@ jobs: | |
|
||
push-relayer-docker-image: | ||
# only push docker image on PR merge to main | ||
if: ${{ github.event }} == 'push' | ||
if: ${{ github.event == 'push' && github.ref == 'refs/heads/main' }} | ||
name: Build and push docker image | ||
runs-on: [taiko-runner] | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ on: | |
pull_request: | ||
paths: | ||
- "packages/taiko-client/**" | ||
- "go.mod" | ||
- "go.sum" | ||
|
||
jobs: | ||
lint: | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.