evm: use proxy etherscan by default for typegen cli #1091
Workflow file for this run
This file contains hidden or 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 unit | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| test: | |
| name: run unit tests | |
| if: "!contains(github.event.head_commit.message, 'test skip')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| lfs: True | |
| - name: Install dependencies | |
| run: node common/scripts/install-run-rush.js install | |
| - name: Build project | |
| run: node common/scripts/install-run-rush.js build | |
| - name: Run tests | |
| run: node common/scripts/install-run-rush.js test |