From 62945c453d78b5989177f22e61c907b7257b4b9f Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 28 Apr 2021 05:49:59 -0500 Subject: [PATCH] Test windows x86 in the test job --- .github/workflows/tests.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 684e78c..f96ee71 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -55,6 +55,12 @@ jobs: matrix: node: [10, 12] os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest] + node_arch: + - x64 + include: + - os: windows-latest + node: 14 + node_arch: x86 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@master @@ -63,8 +69,7 @@ jobs: uses: actions/setup-node@master with: node-version: ${{ matrix.node }} - - - run: yarn + architecture: ${{ matrix.node_arch }} - name: Download prebuilds uses: actions/download-artifact@v2 @@ -77,4 +82,6 @@ jobs: mv artifact/* prebuilds/ ls prebuilds + - run: yarn + - run: yarn test