Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 9bdfe40

Browse files
committed
Migrate to Githu Actions
1 parent 16ceaaf commit 9bdfe40

File tree

2 files changed

+27
-37
lines changed

2 files changed

+27
-37
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
env:
6+
CI: true
7+
8+
jobs:
9+
Test:
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
runs-on: ${{ matrix.os }}
14+
steps:
15+
- uses: actions/checkout@v1
16+
- uses: actions/setup-node@v2
17+
with:
18+
node-version: '14'
19+
- name: Install windows-build-tools
20+
if: ${{ matrix.os == 'windows-latest' }}
21+
run: npm config set msvs_version 2019
22+
- name: Install dependencies
23+
run: npm i
24+
- name: Run tests
25+
uses: GabrielBB/xvfb-action@v1
26+
with:
27+
run: npm test

.travis.yml

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

0 commit comments

Comments
 (0)