Skip to content

Commit 634cc07

Browse files
committed
Use github actions for windows x86
actions/setup-node#194
1 parent 7510d50 commit 634cc07

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,20 @@ jobs:
1919
- 10
2020
- 12
2121
- 14
22+
node_arch:
23+
- x64
24+
include:
25+
- os: windows-2016
26+
node_version: 12
27+
node_arch: x86
2228
steps:
2329
- uses: actions/checkout@v2
2430

2531
- name: Install Node
26-
uses: actions/setup-node@v1
32+
uses: actions/setup-node@v2-beta
2733
with:
2834
node-version: ${{ matrix.node_version }}
35+
architecture: ${{ matrix.node_arch }}
2936

3037
- name: Install npm
3138
run: npm install -g npm

appveyor.yml

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,6 @@
1-
# Used only to test x86
2-
3-
shallow_clone: true
4-
version: "{build}"
5-
6-
image: Visual Studio 2015
7-
8-
platform:
9-
- x86
10-
11-
environment:
12-
nodejs_version: "10.20.1"
13-
14-
install:
15-
- ps: Install-Product node $env:nodejs_version $env:platform
16-
- npm install -g npm
17-
- npm ci
18-
1+
# empty appveyor
192
build: off
203

21-
test: off
22-
23-
deploy: off
4+
branches:
5+
only:
6+
- non-existing

0 commit comments

Comments
 (0)