Skip to content

Commit ca6c3ec

Browse files
Hector Rosalesjamesgeorge007
andauthored
chore: migrate to GitHub Actions (#95)
* 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 <jamesgeorge998001@gmail.com>
1 parent 4bb9619 commit ca6c3ec

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on:
3+
push:
4+
pull_request:
5+
branches:
6+
- master
7+
- next
8+
workflow_dispatch:
9+
jobs:
10+
job:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
15+
node: ['12', '13', '14']
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Setup node
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: ${{ matrix.node }}
22+
- name: Install packages
23+
run: npm ci
24+
- name: Run e2e tests
25+
run: npm run test

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)