-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update lido to account for dvt module; change poolId order to match dsETH getComponents array * use Stakewise v2 poolId * fix tests * prettier
- Loading branch information
Showing
11 changed files
with
237 additions
and
191 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,58 +1,55 @@ | ||
name: ci | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
env: | ||
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | ||
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: true | ||
|
||
name: Hardhat project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup Node 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18.x" | ||
cache: "npm" | ||
|
||
- name: Copy .env vars | ||
run: cp .env.default .env | ||
|
||
- name: Install | ||
run: | | ||
yarn install | ||
- name: Run Hardhat tests | ||
run: | | ||
yarn hardhat test | ||
id: hardhat-test | ||
|
||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Check format | ||
uses: creyD/[email protected] | ||
with: | ||
dry: True | ||
prettier_options: --write **/*.ts | ||
|
||
|
||
|
||
test: | ||
strategy: | ||
fail-fast: true | ||
|
||
name: Hardhat project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup Node 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18.x" | ||
cache: "npm" | ||
|
||
- name: Copy .env vars | ||
run: cp .env.default .env | ||
|
||
- name: Install | ||
run: | | ||
yarn install | ||
- name: Run Hardhat tests | ||
run: | | ||
yarn hardhat test | ||
id: hardhat-test | ||
|
||
prettier: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Make sure the actual branch is checked out when running on pull requests | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Check format | ||
uses: creyD/[email protected] | ||
with: | ||
dry: True | ||
prettier_options: --write **/*.ts |
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,3 +1,3 @@ | ||
{ | ||
"tabWidth": 4 | ||
"tabWidth": 4 | ||
} |
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.