docs: fix links #2846
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: Contracts Tests | |
on: | |
push: | |
paths: | |
- 'packages/contracts/**' | |
- '.github/workflows/contract-*.yml' | |
env: | |
working-directory: packages/contracts | |
jobs: | |
test-hardhat: | |
if: github.actor != 'arabot-1' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{env.working-directory}} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref }} | |
fetch-depth: 0 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
node-version: 16 | |
- name: Install dependencies | |
run: cd ../../ && yarn install --pure-lockfile | |
- name: Check formatting | |
run: yarn run formatting:check | |
- name: Compile contracts | |
run: yarn run build && yarn run build:npm | |
- name: Run Hardhat Tests | |
env: | |
REPORT_GAS: true | |
HARDHAT_DAO_ENS_DOMAIN: 'dao.eth' | |
HARDHAT_PLUGIN_ENS_DOMAIN: 'plugin.dao.eth' | |
MANAGINGDAO_SUBDOMAIN: 'management' | |
MANAGINGDAO_MULTISIG_LISTEDONLY: ${{ vars.MANAGINGDAO_MULTISIG_LISTEDONLY }} | |
MANAGINGDAO_MULTISIG_APPROVERS: ${{ vars.MANAGINGDAO_MULTISIG_APPROVERS }} | |
MANAGINGDAO_MULTISIG_MINAPPROVALS: ${{ vars.MANAGINGDAO_MULTISIG_MINAPPROVALS }} | |
run: yarn run test | |
- name: Run solidity-docgen | |
run: yarn run docgen |