chore: mac build bots (#734)

This commit is contained in:
Joel Einbinder 2020-02-12 12:30:47 -08:00 committed by GitHub
parent 1f29930201
commit a4d0187cb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 96 additions and 0 deletions

32
.github/workflows/chromium-mac.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: "tests: Mac + CR"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: macos
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, and test
run: |
npm install
npm run ctest
env:
CI: true

32
.github/workflows/firefox-mac.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: "tests: Mac + FF"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: macos
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, and test
run: |
npm install
npm run ftest
env:
CI: true

32
.github/workflows/webkit-mac.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: "tests: Mac + WK"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: macos
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, and test
run: |
npm install
npm run wtest
env:
CI: true