Update README.md #438
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: reef-explorer CI | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: "**" | |
workflow_dispatch: | |
jobs: | |
unit-test-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
cache: 'yarn' | |
- run: yarn install | |
- run: yarn workspaces run test | |
- run: yarn workspaces run lint | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make net=dev env=prod up | |
- run: docker-compose --env-file .env -f resources/docker-compose-integration.yml run --rm hardhat_examples |