Skip to content

Commit

Permalink
chore: Windows x86 on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Dec 11, 2020
1 parent a2a3a78 commit 5f0ee3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 140 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/windows.yml
Expand Up @@ -19,6 +19,10 @@ jobs:
- 14
- 15

architecture:
- x64
- x86

include:
- node: 10
os: windows-2016
Expand All @@ -33,12 +37,13 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Node.js environment
uses: actions/setup-node@v2.1.2
uses: actions/setup-node@v2.1.3
with:
node-version: ${{ matrix.node }}
architecture: ${{ matrix.architecture }}

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

Expand All @@ -48,7 +53,7 @@ jobs:
- uses: actions/upload-artifact@v2
if: github.repository_owner == 'sass' && github.event_name != 'pull_request'
with:
name: ${{ matrix.node }}
name: ${{ matrix.node }}-${{ matrix.architecture }}
path: |
vendor/**/binding.node
build/Release/binding.pdb
137 changes: 0 additions & 137 deletions appveyor.yml

This file was deleted.

0 comments on commit 5f0ee3a

Please sign in to comment.