From 9b841ad0cffca6a482c744986c8fed474dea1adf Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Thu, 10 Dec 2020 09:34:38 -0600 Subject: [PATCH] chore: use official setup-node with x86 support https://github.com/actions/setup-node/pull/194 --- .github/workflows/CI.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1df7c8b4..b0595272 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -5,9 +5,6 @@ on: branches: - master -env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: true - jobs: Test: if: "!contains(github.event.head_commit.message, '[skip ci]')" @@ -57,10 +54,10 @@ jobs: echo ::set-env name=CXX::clang++ - name: Install Node - uses: aminya/setup-node@x86 + uses: actions/setup-node@v2.1.3 with: node-version: ${{ matrix.node_version }} - node-arch: ${{ matrix.node_arch }} + architecture: ${{ matrix.node_arch }} - name: Install dependencies and build run: npm install