forked from sushi-labs/sushiswap
-
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.
Merge pull request sushi-labs#30 from matthewlilley/deployments
Deployments
- Loading branch information
Showing
106 changed files
with
27,375 additions
and
1,771 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,12 +1,13 @@ | ||
ALCHEMY_API_KEY= | ||
ETHERSCAN_API_KEY= | ||
COINMARKETCAP_API_KEY= | ||
TENDERLY_PROJECT= | ||
TENDERLY_USERNAME= | ||
REPORT_GAS= | ||
INFURA_API_KEY= | ||
PRIVATE_KEY= | ||
ETHERSCAN_API_KEY= | ||
FORKING=false | ||
HARDHAT_NETWORK=hardhat | ||
HARDHAT_MAX_MEMORY=4096 | ||
HARDHAT_SHOW_STACK_TRACES=true | ||
HARDHAT_VERBOSE=true | ||
HARDHAT_VERBOSE=true | ||
INFURA_API_KEY= | ||
MNEMONIC="test test test test test test test test test test test junk" | ||
REPORT_GAS=false | ||
TENDERLY_PROJECT= | ||
TENDERLY_USERNAME= |
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,37 @@ | ||
# workflow pipeline | ||
name: sushiswap | ||
|
||
on: ["push", "pull_request"] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node: ["14.x", "12.x"] | ||
os: ["ubuntu-latest"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{github.event.pull_request.head.ref}} | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
|
||
- name: Nodejs ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
check-latest: true | ||
|
||
- name: Install and Compile | ||
run: | | ||
yarn install | ||
yarn build | ||
- name: Test and Coverage | ||
run: | | ||
yarn 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
abi/ | ||
artifacts/ | ||
build/ | ||
cache/ | ||
coverage/ | ||
deployments/ | ||
exports/ | ||
node_modules/ | ||
types/ | ||
package-lock.json | ||
.coverage_artifacts/ | ||
.coverage_contracts/ | ||
coverage/ | ||
coverage.json | ||
.env | ||
.env | ||
.DS_Store |
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 +1 @@ | ||
v14.15.1 | ||
lts/erbium |
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,13 +1,4 @@ | ||
module.exports = { | ||
norpc: true, | ||
testCommand: "npm test", | ||
compileCommand: "npm run compile", | ||
skipFiles: ["mocks/", "interfaces/", "uniswapv2/"], | ||
providerOptions: { | ||
default_balance_ether: "10000000000000000000000000", | ||
}, | ||
mocha: { | ||
fgrep: "[skip-on-coverage]", | ||
invert: true, | ||
}, | ||
} |
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,3 @@ | ||
{ | ||
"extends": "solhint:default" | ||
} |
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.