Skip to content

Remove testnets kill list #65

Remove testnets kill list

Remove testnets kill list #65

Workflow file for this run

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