From 57a8e3d2aff47c24c7a4c4da92af365056420404 Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Fri, 3 May 2024 08:55:13 -0400 Subject: [PATCH 1/2] 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 e83078b9..8aa99d8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,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 build - run: npm run lint @@ -39,7 +40,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: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ./.npmrc - run: npm ci - run: npm run build From c82db969aadad1242ca547eb453ced0fc2b4a3fd Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Fri, 3 May 2024 09:06:52 -0400 Subject: [PATCH 2/2] re-include mac and windows builds --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8aa99d8d..8c19539d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: CI: true strategy: matrix: - os: [ubuntu-latest] #, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@master - uses: actions/setup-node@master