Deploy the contracts + app together #162
Workflow file for this run
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: Test and deploy the contracts | ||
defaults: | ||
run: | ||
working-directory: contracts | ||
env: | ||
FOUNDRY_PROFILE: ci | ||
CI: true | ||
FORCE_COLOR: true | ||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- ".github/workflows/contracts.yml" | ||
- "contracts/**" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/contracts.yml" | ||
- "contracts/**" | ||
jobs: | ||
test-foundry: | ||
name: Foundry tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- name: Run Forge build | ||
run: | | ||
forge --version | ||
forge build --sizes | ||
id: build | ||
- name: Run Forge tests | ||
run: | | ||
forge test -vvv | ||
id: test | ||
deploy: | ||
name: Deploy contracts to Liquity v2 Testnet | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3.0.0 | ||
with: | ||
version: 8 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.node-version' | ||
cache: 'pnpm' | ||
cache-dependency-path: 'contracts/pnpm-lock.yaml' | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- name: Run deployment tool | ||
run: ./deploy liquity-testnet --verify | ||
env: | ||
DEPLOYER: ${{ secrets.DEPLOYER }} | ||
- name: Update env vars | ||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
with: | ||
name: deployment.json | ||
path: deployment-latest.json | ||
console-logs: | ||
name: Check we didn’t forget to remove console imports | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Check console imports | ||
working-directory: contracts | ||
run: >- | ||
! grep -R console src | grep import | grep -v "://" | grep -v TestContracts | grep -v ExternalContracts | grep -v "\.t\.sol" | ||
test-hardhat: | ||
name: Hardhat tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3.0.0 | ||
with: | ||
version: 8 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.node-version' | ||
cache: 'pnpm' | ||
cache-dependency-path: 'contracts/pnpm-lock.yaml' | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- name: Test contracts | ||
run: pnpm test | ||
coverage: | ||
name: Coverage | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
# Foundry | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- name: Run Forge build | ||
run: | | ||
forge --version | ||
forge build --sizes | ||
id: build | ||
- name: Run Forge coverage | ||
run: | | ||
forge coverage --report lcov --report-file lcov_foundry.info | ||
id: coverage | ||
- name: Install lcov | ||
run: sudo apt-get -y install lcov | ||
#- name: Filter out tests from coverage | ||
# run: | | ||
# lcov --remove lcov_foundry.info -o lcov_foundry.info 'src/test/*' | ||
# id: coverage_filter | ||
# Hardhat | ||
- name: Install pnpm | ||
uses: pnpm/action-setup@v3.0.0 | ||
with: | ||
version: 8 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: '.node-version' | ||
cache: 'pnpm' | ||
cache-dependency-path: 'contracts/pnpm-lock.yaml' | ||
- name: Install dependencies | ||
run: pnpm install | ||
- name: harhdat coverage | ||
run: pnpm coverage | ||
continue-on-error: true | ||
env: | ||
NODE_OPTIONS: --max-old-space-size=4096 | ||
# Merge | ||
- name: Merge coverage reports | ||
id: coverage_merge | ||
run: | | ||
lcov \ | ||
--rc lcov_branch_coverage=1 \ | ||
--add-tracefile lcov_foundry.info \ | ||
--add-tracefile coverage/lcov.info \ | ||
--output-file lcov_merged.info | ||
# Filter | ||
- name: Filter out tests from coverage | ||
run: | | ||
lcov --remove lcov_merged.info -o lcov_merged.info \ | ||
'src/test/*' \ | ||
'src/TestContracts/*' \ | ||
'src/OldTestContracts/*' \ | ||
'src/Dependencies/*' \ | ||
'src/Interfaces/*' | ||
id: coverage_filter | ||
# Send to coveralls | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
base-path: ./contracts/ | ||
path-to-lcov: ./contracts/lcov_merged.info | ||
debug: true | ||