Skip to content

Commit

Permalink
chore: migrate to GitHub Actions (#95)
Browse files Browse the repository at this point in the history
* chore: add GitHub Actions lint pipeline

* chore: configure build matrix to run tests on multiple platforms

* chore: delete travis ci config file

Co-authored-by: jamesgeorge007 <[email protected]>
  • Loading branch information
Hector Rosales and jamesgeorge007 authored Nov 16, 2020
1 parent 4bb9619 commit ca6c3ec
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on:
push:
pull_request:
branches:
- master
- next
workflow_dispatch:
jobs:
job:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
node: ['12', '13', '14']
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install packages
run: npm ci
- name: Run e2e tests
run: npm run test
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

0 comments on commit ca6c3ec

Please sign in to comment.