Skip to content

Add Hardhat Ignition to hardhat-toolbox #3360

Add Hardhat Ignition to hardhat-toolbox

Add Hardhat Ignition to hardhat-toolbox #3360

name: hardhat-truffle4 CI
on:
push:
branches: [$default-branch]
paths:
- "packages/hardhat-truffle4/**"
- "packages/hardhat-web3-legacy/**"
- "packages/hardhat-core/**"
- "packages/hardhat-common/**"
- "config/**"
pull_request:
branches:
- "**"
paths:
- "packages/hardhat-truffle4/**"
- "packages/hardhat-web3-legacy/**"
- "packages/hardhat-core/**"
- "packages/hardhat-common/**"
- "config/**"
workflow_dispatch:
defaults:
run:
working-directory: packages/hardhat-truffle4
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
test_on_windows:
name: Test hardhat-truffle4 on Windows with Node 18
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v2
with:
node-version: 18
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test
test_on_macos:
name: Test hardhat-truffle4 on MacOS with Node 18
runs-on: macos-latest
# disable until actions/virtual-environments#4896 is fixed
if: ${{ false }}
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v2
with:
node-version: 18
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test
test_on_linux:
name: Test hardhat-truffle4 on Ubuntu with Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test