diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c2858d..be23b02 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: "10.19.0" + node-version: "14.18.1" + architecture: 'x64' # fix for macos-latest - run: npm ci - run: npm run build - run: npm run lint @@ -31,7 +32,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