Merge pull request #174 from ethersphere/different_deployer #138
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20' | |
# Restore the yarn cache | |
- uses: c-hive/gha-yarn-cache@v1 | |
- name: Yarn install | |
run: yarn install | |
- name: Linter | |
run: yarn lint | |
- name: Compile | |
run: yarn compile | |
- name: Test | |
run: yarn hardhat test | |
- name: Coverage | |
run: yarn test:coverage |