From fbbec6199c6351721acedb35110fc1cc7bbb65ad Mon Sep 17 00:00:00 2001 From: CJ42 Date: Mon, 30 Oct 2023 15:25:08 +0000 Subject: [PATCH 1/2] chore: release 0.12.0 Release-As: 0.12.0 From a9f3e86df720f6c77efa00d071cab0daf9daea0c Mon Sep 17 00:00:00 2001 From: Jean Cvllr <31145285+CJ42@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:53:58 +0000 Subject: [PATCH 2/2] ci: adjust PR syntax for code coverage, only on merged PRs to `develop` (#771) * ci: adjust PR syntax for code coverage, only on merged PRs to `develop` * ci: adjust nodejs heap memory --- .github/workflows/coverage.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 90a282acb..cef18cecc 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -4,14 +4,21 @@ name: Solidity Code coverage +env: + # 4GB of memory to prevent max heap size error when running code coverage + NODE_OPTIONS: "--max_old_space_size=4096" + on: - push: + pull_request: branches: - "develop" + types: + - closed jobs: coverage: runs-on: ubuntu-latest + if: github.event.pull_request.merged == true steps: - uses: actions/checkout@v3