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

Commit

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

on: [push, pull_request]

jobs:
build:
runs-on: macos-latest

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/
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

0 comments on commit c41205b

Please sign in to comment.