Skip to content

Commit

Permalink
Use github actions for windows x86
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Dec 10, 2020
1 parent 7510d50 commit adbc9b7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 22 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/CI.yml
Expand Up @@ -19,13 +19,18 @@ jobs:
- 10
- 12
- 14
include:
- os: windows-2016
node_version: 12
node_arch: x86
steps:
- uses: actions/checkout@v2

- name: Install Node
uses: actions/setup-node@v1
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.node_arch }}

- name: Install npm
run: npm install -g npm
Expand Down
25 changes: 4 additions & 21 deletions appveyor.yml
@@ -1,23 +1,6 @@
# Used only to test x86

shallow_clone: true
version: "{build}"

image: Visual Studio 2015

platform:
- x86

environment:
nodejs_version: "10.20.1"

install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install -g npm
- npm ci

# empty appveyor
build: off

test: off

deploy: off
branches:
only:
- non-existing

0 comments on commit adbc9b7

Please sign in to comment.