We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c5b35 commit 62945c4Copy full SHA for 62945c4
.github/workflows/tests.yaml
@@ -55,6 +55,12 @@ jobs:
55
matrix:
56
node: [10, 12]
57
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
64
runs-on: ${{ matrix.os }}
65
steps:
66
- uses: actions/checkout@master
@@ -63,8 +69,7 @@ jobs:
69
uses: actions/setup-node@master
70
with:
71
node-version: ${{ matrix.node }}
-
67
- - run: yarn
72
+ architecture: ${{ matrix.node_arch }}
68
73
74
- name: Download prebuilds
75
uses: actions/download-artifact@v2
@@ -77,4 +82,6 @@ jobs:
77
82
mv artifact/* prebuilds/
78
83
ls prebuilds
79
84
85
+ - run: yarn
86
+
80
87
- run: yarn test
0 commit comments