From ecc94b2201cd1c867c902588436376bb36069202 Mon Sep 17 00:00:00 2001 From: Alex Muramoto Date: Mon, 27 Mar 2023 13:16:33 -0700 Subject: [PATCH] Fixes semantic release breakage see https://github.com/cycjimmy/semantic-release-action/issues/79#issuecomment-955463633 --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52669cd870..b52b6a7424 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,9 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node + - uses: actions/setup-node@v2 + with: + node-version: '14' - run: npm i - run: npm run test:jest - run: npm run build