Skip to content

Commit e4962db

Browse files
committed
Switch from Travis CI to GitHub Actions
1 parent 3f2f9b7 commit e4962db

3 files changed

Lines changed: 42 additions & 23 deletions

File tree

.github/workflows/test.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
on:
2+
- push
3+
- pull_request
4+
5+
jobs:
6+
test:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
node:
11+
- '0.8'
12+
- '0.10'
13+
- '0.12'
14+
- '4'
15+
- '5'
16+
- '6'
17+
- '7'
18+
- '8'
19+
- '9'
20+
- '10'
21+
- '11'
22+
- '12'
23+
- '13'
24+
- '14'
25+
- '15'
26+
- '16'
27+
name: node.js v${{ matrix.node }}
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: actions/checkout@v2
31+
32+
- uses: actions/setup-node@v2
33+
with:
34+
node-version: ${{ matrix.node }}
35+
36+
- if: matrix.node == '0.8'
37+
run: npm conf set strict-ssl false
38+
39+
- run: node --version
40+
- run: npm install
41+
- run: npm test

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# websocket-driver [![Build Status](https://travis-ci.org/faye/websocket-driver-node.svg)](https://travis-ci.org/faye/websocket-driver-node)
1+
# websocket-driver
22

33
This module provides a complete implementation of the WebSocket protocols that
44
can be hooked up to any I/O stream. It aims to simplify things by decoupling the

0 commit comments

Comments
 (0)