chore: migrate from Travis CI to GitHub Actions

This commit is contained in:
Jeff Williams 2020-12-24 13:16:39 -08:00
parent b10fb33462
commit 3cd49c3349
2 changed files with 20 additions and 7 deletions

20
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Node.js CI
on: [push, pull_request]
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [10, 12, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Test and lint
run: |
npm install -g gulp lerna
npm install
lerna bootstrap
gulp

View File

@ -1,7 +0,0 @@
language: node_js
node_js:
- "10"
- "12"
install: npm install -g gulp lerna && npm install && lerna bootstrap