chore: mac build bots (#734)
This commit is contained in:
parent
1f29930201
commit
a4d0187cb8
32
.github/workflows/chromium-mac.yml
vendored
Normal file
32
.github/workflows/chromium-mac.yml
vendored
Normal 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
32
.github/workflows/firefox-mac.yml
vendored
Normal 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
32
.github/workflows/webkit-mac.yml
vendored
Normal 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
|
||||||
Loading…
Reference in a new issue