Skip to content

Commit

Permalink
chore: mac build bots (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelEinbinder authored Feb 12, 2020
1 parent 1f29930 commit a4d0187
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/chromium-mac.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 32 additions & 0 deletions .github/workflows/firefox-mac.yml
Original file line number Diff line number Diff line change
@@ -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 changes: 32 additions & 0 deletions .github/workflows/webkit-mac.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a4d0187

Please sign in to comment.