Skip to content

Commit d9b279a

Browse files
authored
Migrate to Github Actions (#402)
1 parent 17b29b9 commit d9b279a

File tree

2 files changed

+22
-48
lines changed

2 files changed

+22
-48
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
Tests:
11+
runs-on: ${{ matrix.os }}
12+
timeout-minutes: 6
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, windows-latest]
16+
fail-fast: false
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: actions/setup-node@v1
20+
- run: npm ci
21+
- run: npm run build
22+
- run: npm test

.travis.yml

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

0 commit comments

Comments
 (0)