From 32b60a3390b03081d2fb1c87fdc05f4b14f4007b Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Fri, 3 May 2024 09:00:02 -0400 Subject: [PATCH] fix node14 --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6a79f1..e9513c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,8 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-node@master with: - node-version: "12.22.7" + node-version: "14.18.1" + architecture: 'x64' # fix for macos-latest - run: npm ci - run: npm run preversion - run: npm run publish-coverage @@ -29,7 +30,8 @@ jobs: - uses: actions/checkout@master - uses: actions/setup-node@master with: - node-version: "10.19.0" + node-version: "14.18.1" + architecture: 'x64' # fix for macos-latest - run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ./.npmrc - run: npm ci - run: npm run build