Skip to content

Commit adbc9b7

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

File tree

2 files changed

+10
-22
lines changed

2 files changed

+10
-22
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,18 @@ jobs:
1919
- 10
2020
- 12
2121
- 14
22+
include:
23+
- os: windows-2016
24+
node_version: 12
25+
node_arch: x86
2226
steps:
2327
- uses: actions/checkout@v2
2428

2529
- name: Install Node
26-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v2-beta
2731
with:
2832
node-version: ${{ matrix.node_version }}
33+
architecture: ${{ matrix.node_arch }}
2934

3035
- name: Install npm
3136
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)