Main #745
This file contains hidden or 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: hardhat-foundry CI | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [$default-branch] | |
| paths: | |
| - "packages/hardhat-foundry/**" | |
| - "packages/hardhat-common/**" | |
| - "config/**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| paths: | |
| - "packages/hardhat-foundry/**" | |
| - "packages/hardhat-common/**" | |
| - "config/**" | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| working-directory: packages/hardhat-foundry | |
| concurrency: | |
| group: ${{github.workflow}}-${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| test_on_windows: | |
| name: Test hardhat-foundry on Windows with Node 16 | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - uses: actions/cache@v3 | |
| continue-on-error: true | |
| with: | |
| # cache config here | |
| node-version: 16 | |
| cache: "pnpm" | |
| - name: Install | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Build | |
| run: pnpm build | |
| - name: Run tests | |
| env: | |
| FORCE_COLOR: 3 | |
| run: pnpm test | |
| test_on_macos: | |
| name: Test hardhat-foundry on MacOS with Node 16 | |
| runs-on: macos-latest | |
| # disable until actions/virtual-environments#4896 is fixed | |
| if: ${{ false }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: 16 | |
| cache: "pnpm" | |
| - name: Install | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Build | |
| run: pnpm build | |
| - name: Run tests | |
| env: | |
| FORCE_COLOR: 3 | |
| run: pnpm test | |
| test_on_linux: | |
| name: Test hardhat-foundry on Ubuntu with Node ${{ matrix.node }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [16, 18, 20] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - 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 | |
| env: | |
| FORCE_COLOR: 3 | |
| run: pnpm test |