Skip to content

Commit c47a69d

Browse files
committed
Deprecate travis and add github actions ci
1 parent d1ad9ea commit c47a69d

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

.github/workflows/tests.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Tests
2+
3+
on: [push]
4+
5+
jobs:
6+
unit:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
node: [ '12', '14', '16' ]
11+
12+
container:
13+
image: node:${{ matrix.node }}-alpine
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- run: yarn install --frozen-lockfile
18+
- run: yarn lint
19+
- run: yarn test

.travis.yml

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

0 commit comments

Comments
 (0)