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

Commit c41205b

Browse files
committed
chore: Move macOS to GitHub Actions
1 parent 6216587 commit c41205b

File tree

2 files changed

+36
-36
lines changed

2 files changed

+36
-36
lines changed

.github/workflows/macos.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build bindings for macOS releases
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: macos-latest
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: vendor/

.travis.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)