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

Commit

Permalink
chore: Move Windows x64 to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Sep 27, 2020
1 parent f4eec7e commit 90b1f03
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build bindings for Windows releases

on: [push, pull_request]

jobs:
build:
runs-on: windows-2016

strategy:
fail-fast: false
matrix:
node:
- 10
- 12
- 14.5

steps:
- uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}

- name: Install packages
run: npm install --unsafe-perm
env:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true

- name: Run tests
run: npm test

- uses: actions/upload-artifact@v2
with:
name: ${{ matrix.node }}
path: |
vendor/**/binding.node
build/Release/binding.pdb
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
configuration: release

platform:
- x64
- x86

version: "{build}"
Expand Down

0 comments on commit 90b1f03

Please sign in to comment.