Merge pull request #54 from windingtree/gnosis-chiado #34
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 | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Lint | |
run: pnpm lint | |
- name: Check contract sizes | |
run: pnpm hardhat size-contracts | |
- name: Test | |
run: pnpm test |