Update upgradeables, deployed MintyBurnyRegistry,HotDog, and ChillyDog. #35
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
name: Lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [lts/*] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup node env | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
yarn install --immutable | |
curl -L https://foundry.paradigm.xyz | bash | |
source /home/runner/.bashrc | |
echo "PATH=$PATH:/home/runner/.config/.foundry/bin" >> $GITHUB_ENV | |
/home/runner/.config/.foundry/bin/foundryup | |
git submodule init | |
- name: Run hardhat node, deploy contracts (& generate contracts typescript output) | |
run: yarn chain & yarn deploy | |
env: | |
ALCHEMY_API_KEY: ${{secrets.ALCHEMY_API_KEY}} | |
ETHERSCAN_API_KEY: ${{secrets.ETHERSCAN_API_KEY}} | |
- name: Run nextjs lint | |
run: yarn next:lint --max-warnings=0 | |
- name: Check typings on nextjs | |
run: yarn next:check-types | |
- name: Run foundry lint | |
run: yarn foundry:lint |