mac build bots

This commit is contained in:
Joel Einbinder 2020-01-28 18:37:38 -08:00 committed by Joel Einbinder
parent 1f29930201
commit 88b08c5387
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: Chromium Mac Tests
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: Firefox Mac Tests
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: WebKit Mac Tests
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