Skip to content

Commit db50a84

Browse files
authored
migrates to GHA (#145)
1 parent b994f7d commit db50a84

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Tests
2+
on: [push, pull_request]
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
8+
strategy:
9+
matrix:
10+
node-version: [10.x, 12.x, 14.x, 16.x]
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Use Node.js ${{ matrix.node-version }}
15+
uses: actions/setup-node@v2
16+
with:
17+
node-version: ${{ matrix.node-version }}
18+
- name: Install Yarn
19+
run: npm install -g yarn
20+
- run: yarn
21+
- run: yarn build
22+
- run: yarn test

.travis.yml

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

0 commit comments

Comments
 (0)