Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 90b1f03

Browse files
committed
chore: Move Windows x64 to GitHub Actions
1 parent f4eec7e commit 90b1f03

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

.github/workflows/windows.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Build bindings for Windows releases
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: windows-2016
8+
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
node:
13+
- 10
14+
- 12
15+
- 14.5
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- name: Setup Node.js environment
21+
uses: actions/[email protected]
22+
with:
23+
node-version: ${{ matrix.node }}
24+
25+
- name: Install packages
26+
run: npm install --unsafe-perm
27+
env:
28+
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true
29+
30+
- name: Run tests
31+
run: npm test
32+
33+
- uses: actions/upload-artifact@v2
34+
with:
35+
name: ${{ matrix.node }}
36+
path: |
37+
vendor/**/binding.node
38+
build/Release/binding.pdb

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
configuration: release
1212

1313
platform:
14-
- x64
1514
- x86
1615

1716
version: "{build}"

0 commit comments

Comments
 (0)