From 3cd49c334936f9c633b072179cd6aef5b01ca17f Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Thu, 24 Dec 2020 13:16:39 -0800 Subject: [PATCH] chore: migrate from Travis CI to GitHub Actions --- .github/workflows/ci.yaml | 20 ++++++++++++++++++++ .travis.yml | 7 ------- 2 files changed, 20 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/ci.yaml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..133bad76 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4d798518..00000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: node_js - -node_js: - - "10" - - "12" - -install: npm install -g gulp lerna && npm install && lerna bootstrap