fix: static state change error #2695
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: hardhat-solhint CI | |
on: | |
push: | |
branches: [$default-branch] | |
paths: | |
- "packages/hardhat-solhint/**" | |
- "packages/hardhat-core/**" | |
- "packages/hardhat-common/**" | |
- "config/**" | |
pull_request: | |
branches: | |
- "**" | |
paths: | |
- "packages/hardhat-solhint/**" | |
- "packages/hardhat-core/**" | |
- "packages/hardhat-common/**" | |
- "config/**" | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: packages/hardhat-solhint | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
test_on_windows: | |
name: Test hardhat-solhint on Windows with Node 18 | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
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-solhint 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: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
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-solhint on Ubuntu with Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [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 |