From 081898bda3b2c52c54fa335be690d9f7d8920e84 Mon Sep 17 00:00:00 2001 From: Jason Luong Date: Wed, 1 May 2024 11:26:06 +0100 Subject: [PATCH 1/2] chore: increase heap memory to 32GB --- .releaserc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc b/.releaserc index 5f966be..f5a7b7b 100644 --- a/.releaserc +++ b/.releaserc @@ -4,7 +4,7 @@ { "//": "build the alpine, macos, linux and windows binaries", "path": "@semantic-release/exec", - "cmd": "npm i -g pkg@5.8.1 && pkg . --options max_old_space_size=16384 -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64" + "cmd": "npm i -g pkg@5.8.1 && pkg . --options max_old_space_size=32768 -t node14-alpine-x64,node14-linux-x64,node14-macos-x64,node14-win-x64" }, { "//": "shasum all binaries", From 7291466689d4b9b6faed789ce6eacb1db7988f89 Mon Sep 17 00:00:00 2001 From: Jason Luong Date: Wed, 1 May 2024 13:12:52 +0100 Subject: [PATCH 2/2] chore: include node version 18, 20 in CICD tests --- .github/workflows/test-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index f8afe89..c755650 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12, 14, 16] + node-version: [12, 14, 16, 18, 20] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }}