Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
added secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
brendaloya committed Mar 31, 2021
1 parent e3ae15b commit 87a755a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
CI: true
# These are not needed for the tests but
# hardhat fails to start when not present.
NODE_URL_RINKEBY: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
NODE_URL_MAINNET: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
PRIVATE_KEY: "00000000000000000000000000000000000000000000000000"
NODE_URL_RINKEBY: ${{ secrets.RINKEBY_NODE }}
NODE_URL_MAINNET: ${{ secrets.MAINNET_NODE }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
#NODE_URL_RINKEBY: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
#NODE_URL_MAINNET: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
#PRIVATE_KEY: "00000000000000000000000000000000000000000000000000"
Linting:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 87a755a

Please sign in to comment.