Skip to content

Commit 4d37802

Browse files
authored
Merge pull request #300 from aminya/update-deps
Update dependencies + test on Node>10 compatible dependencies
2 parents d276dd0 + 30bb9e7 commit 4d37802

File tree

11 files changed

+3562
-6018
lines changed

11 files changed

+3562
-6018
lines changed

.github/workflows/ci.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: ci
2+
on:
3+
pull_request:
4+
push:
5+
6+
env:
7+
THREADS_WORKER_INIT_TIMEOUT: 15000
8+
9+
jobs:
10+
Test:
11+
if: "!contains(github.event.head_commit.message, '[skip ci]')"
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
node_version: [ '10', '12', '14' ]
17+
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Setup node
21+
uses: actions/setup-node@v2-beta
22+
with:
23+
node-version: ${{ matrix.node }}
24+
25+
- name: install dependencies and build
26+
run: npm install
27+
28+
- name: run the tests
29+
run: npm test
30+
31+
Skip:
32+
if: contains(github.event.head_commit.message, '[skip ci]')
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Skip CI 🚫
36+
run: echo skip ci

.travis.yml

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

0 commit comments

Comments
 (0)