File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Load diff This file was deleted.
Original file line number Diff line number Diff line change 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
33This module provides a complete implementation of the WebSocket protocols that
44can be hooked up to any I/O stream. It aims to simplify things by decoupling the
You can’t perform that action at this time.
0 commit comments