Remove testnets kill list #65
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: Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: main | |
pull_request: | |
branches: | |
- "*" | |
env: | |
RPC_FORK_URL: ${{secrets.RPC_FORK_URL}} | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
test: | |
env: | |
rpc: https://rpc-endpoints.superfluid.dev/polygon-mumbai | |
name: Test hardhat-mocha on Ubuntu with Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18] | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: actions/checkout@v2 | |
- name: Install | |
run: yarn --frozen-lockfile | |
- name: Compile | |
run: yarn compile | |
- name: Run tests | |
run: yarn coverage |