-
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 feat/guardian-ui--change-endpoints-to-address
- Loading branch information
Showing
443 changed files
with
27,558 additions
and
2,804 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
[default.extend-words] | ||
TGE = "TGE" | ||
TKO = "TKO" | ||
Ethereum = "Ethereum" | ||
Ethereum = "Ethereum" | ||
|
||
[files] | ||
extend-exclude = ["packages/protocol/audit"] |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Taikoon UI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "packages/taikoon-ui/**" | ||
pull_request: | ||
paths: | ||
- "packages/taikoon-ui/**" | ||
|
||
jobs: | ||
build: | ||
runs-on: [taiko-runner] | ||
steps: | ||
- name: Cancel previous runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install pnpm dependencies | ||
uses: ./.github/actions/install-pnpm-dependencies | ||
|
||
- name: Check formatting | ||
working-directory: ./packages/taikoon-ui | ||
run: pnpm lint | ||
|
||
- name: Frontend build | ||
working-directory: ./packages/taikoon-ui | ||
run: | | ||
export PUBLIC_WALLETCONNECT_PROJECT_ID="fake_project_id" | ||
export PUBLIC_IPFS_GATEWAY="https://ipfs.io/ipfs/" | ||
pnpm 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,9 +24,7 @@ jobs: | |
submodules: recursive | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly-2cb875799419c907cc3709e586ece2559e6b340e | ||
uses: foundry-rs/[email protected] | ||
|
||
- name: Install pnpm dependencies | ||
uses: ./.github/actions/install-pnpm-dependencies | ||
|
@@ -35,6 +33,10 @@ jobs: | |
working-directory: ./packages/taikoon | ||
run: forge fmt --check | ||
|
||
- name: Solidity compilation | ||
working-directory: ./packages/taikoon | ||
run: pnpm compile | ||
|
||
- name: Unit Tests | ||
working-directory: ./packages/taikoon | ||
run: pnpm clean && pnpm test | ||
run: pnpm test |
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
Oops, something went wrong.