From a4d0187cb8f41fd23688130b228945f60aa177b7 Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Wed, 12 Feb 2020 12:30:47 -0800 Subject: [PATCH] chore: mac build bots (#734) --- .github/workflows/chromium-mac.yml | 32 ++++++++++++++++++++++++++++++ .github/workflows/firefox-mac.yml | 32 ++++++++++++++++++++++++++++++ .github/workflows/webkit-mac.yml | 32 ++++++++++++++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 .github/workflows/chromium-mac.yml create mode 100644 .github/workflows/firefox-mac.yml create mode 100644 .github/workflows/webkit-mac.yml diff --git a/.github/workflows/chromium-mac.yml b/.github/workflows/chromium-mac.yml new file mode 100644 index 0000000000..438929e9fa --- /dev/null +++ b/.github/workflows/chromium-mac.yml @@ -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 diff --git a/.github/workflows/firefox-mac.yml b/.github/workflows/firefox-mac.yml new file mode 100644 index 0000000000..9d70c398be --- /dev/null +++ b/.github/workflows/firefox-mac.yml @@ -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 diff --git a/.github/workflows/webkit-mac.yml b/.github/workflows/webkit-mac.yml new file mode 100644 index 0000000000..f05f4f308f --- /dev/null +++ b/.github/workflows/webkit-mac.yml @@ -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