Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add windows and macos #103

Merged
merged 4 commits into from
Jun 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 7 additions & 10 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,15 @@ on:

jobs:
build:

runs-on: ubuntu-latest

runs-on: ${{ matrix.platform }}
strategy:
matrix:
node-version: [10.x, 12.x]

services:
mongodb:
image: mongo:3.4.23
ports:
- 27017:27017
platform: [windows-latest, macos-latest, ubuntu-latest]
mongodb-version: [3.6]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand All @@ -34,3 +28,6 @@ jobs:
- run: npm test
env:
CI: true
TWILIO_ACCOUNT_SID: ACXXXXXX
TWILIO_AUTH_TOKEN: XXXXX
TWILIO_NUMBER: +1555555
12 changes: 6 additions & 6 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ pull_request_rules:
- name: automatic merge for Dependabot pull requests
conditions:
- author=dependabot-preview[bot]
- status-success=build (macos-latest, 10)
- status-success=build (macos-latest, 12)
- status-success=build (windows-latest, 10)
- status-success=build (windows-latest, 12)
- status-success=build (ubuntu-latest, 10)
- status-success=build (ubuntu-latest, 12)
- status-success=build (10.x, macos-latest)
- status-success=build (12.x, macos-latest)
- status-success=build (10.x, windows-latest)
- status-success=build (12.x, windows-latest)
- status-success=build (10.x, ubuntu-latest)
- status-success=build (12.x, ubuntu-latest)
actions:
merge:
method: squash
Loading