Update to ethers v6 #616
Workflow file for this run
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: run-tests | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/run_tests.yml' | |
- 'hardhat.config.ts' | |
- 'contracts/**' | |
- 'test/**' | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 22.3.0 | |
- name: Installing dependencies | |
run: yarn install --frozen-lockfile | |
- name: Running tests | |
run: yarn test |