fix solc use forge std foundry #502
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 Network Tracing Capabilities CI | |
| on: | |
| push: | |
| branches: [$default-branch] | |
| paths: | |
| - "packages/hardhat-core/**" | |
| - "packages/hardhat-common/**" | |
| - "config/**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| paths: | |
| - "packages/hardhat-core/**" | |
| - "packages/hardhat-common/**" | |
| - "config/**" | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| working-directory: packages/hardhat-core | |
| concurrency: | |
| group: ${{github.workflow}}-${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| test_tracing: | |
| name: Test tracing capabilities on Ubuntu with Node ${{ matrix.node }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [16, 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: Cache artifacts | |
| uses: actions/cache@v2 | |
| with: | |
| path: | | |
| packages/hardhat-core/test/internal/hardhat-network/stack-traces/test-files/artifacts | |
| key: hardhat-network-stack-traces-tests-${{ hashFiles('packages/hardhat-core/test/internal/hardhat-network/stack-traces/test-files/**/*.sol') }}-${{ hashFiles('packages/hardhat-core/test/internal/hardhat-network/stack-traces/test-files/**/test.json') }}-${{ hashFiles('packages/hardhat-core/test/internal/hardhat-network/stack-traces/**/*.ts') }} | |
| - name: Run tests | |
| env: | |
| DO_NOT_SET_THIS_ENV_VAR____IS_HARDHAT_CI: true | |
| FORCE_COLOR: 3 | |
| NODE_OPTIONS: "--max-old-space-size=4096" | |
| run: pnpm test:tracing |