-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4457 from NomicFoundation/hardhat-viem
hardhat-viem
- Loading branch information
Showing
83 changed files
with
4,315 additions
and
44 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"hardhat": patch | ||
--- | ||
|
||
Added a viem option to the project initialization |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: hardhat-viem CI | ||
|
||
on: | ||
push: | ||
branches: main | ||
paths: | ||
- "packages/hardhat-viem/**" | ||
- "packages/hardhat-core/**" | ||
- "packages/hardhat-common/**" | ||
- "config/**" | ||
pull_request: | ||
branches: | ||
- "**" | ||
paths: | ||
- "packages/hardhat-viem/**" | ||
- "packages/hardhat-core/**" | ||
- "packages/hardhat-common/**" | ||
- "config/**" | ||
workflow_dispatch: | ||
|
||
defaults: | ||
run: | ||
working-directory: packages/hardhat-viem | ||
|
||
concurrency: | ||
group: ${{github.workflow}}-${{github.ref}} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test_on_windows: | ||
name: Test hardhat-viem on Windows with Node 16 | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16 | ||
cache: yarn | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Build | ||
run: yarn build | ||
- name: Run tests | ||
run: yarn test | ||
|
||
test_on_macos: | ||
name: Test hardhat-viem on MacOS with Node 16 | ||
runs-on: macos-latest | ||
# disable until actions/virtual-environments#4896 is fixed | ||
if: ${{ false }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16 | ||
cache: yarn | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Build | ||
run: yarn build | ||
- name: Run tests | ||
run: yarn test | ||
|
||
test_on_linux: | ||
name: Test hardhat-viem on Ubuntu with Node ${{ matrix.node }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node: [16, 18, 20] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: yarn | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Build | ||
run: yarn build | ||
- name: Run tests | ||
run: yarn test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,3 +113,4 @@ Cargo.lock | |
|
||
# VSCode settings | ||
.vscode/ | ||
*.code-workspace |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ order: | |
- href: /vscode-tests | ||
title: Running tests in VS Code | ||
- /using-esm | ||
- /using-viem |
Oops, something went wrong.