Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit e6aa6ef

Browse files
committed
chore: remove travis, switch to github workflows for testing
1 parent 13d0d1c commit e6aa6ef

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
name: Test
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-node@v1
13+
14+
- name: Install yarn
15+
run: npm i -g yarn
16+
17+
- name: Install dependencies
18+
run: yarn
19+
20+
- name: Run tests
21+
run: yarn test

.travis.yml

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

0 commit comments

Comments
 (0)