This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
build(deps): bump make-fetch-happen from 10.2.1 to 13.0.0 #374
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build bindings for Windows releases | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-2019 | |
strategy: | |
fail-fast: false | |
matrix: | |
node: | |
- 16 | |
- 18 | |
- 19 | |
- 20 | |
architecture: | |
- x64 | |
- x86 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install packages | |
run: npm install | |
env: | |
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true | |
- name: Run tests | |
run: npm test | |
- uses: actions/upload-artifact@v3 | |
if: github.repository_owner == 'sass' && github.event_name != 'pull_request' | |
with: | |
name: ${{ matrix.node }}-${{ matrix.architecture }} | |
path: | | |
vendor/**/binding.node | |
build/Release/binding.pdb |