Skip to content

Commit 62945c4

Browse files
committed
Test windows x86 in the test job
1 parent 09c5b35 commit 62945c4

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ jobs:
5555
matrix:
5656
node: [10, 12]
5757
os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest]
58+
node_arch:
59+
- x64
60+
include:
61+
- os: windows-latest
62+
node: 14
63+
node_arch: x86
5864
runs-on: ${{ matrix.os }}
5965
steps:
6066
- uses: actions/checkout@master
@@ -63,8 +69,7 @@ jobs:
6369
uses: actions/setup-node@master
6470
with:
6571
node-version: ${{ matrix.node }}
66-
67-
- run: yarn
72+
architecture: ${{ matrix.node_arch }}
6873

6974
- name: Download prebuilds
7075
uses: actions/download-artifact@v2
@@ -77,4 +82,6 @@ jobs:
7782
mv artifact/* prebuilds/
7883
ls prebuilds
7984
85+
- run: yarn
86+
8087
- run: yarn test

0 commit comments

Comments
 (0)