File tree Expand file tree Collapse file tree 4 files changed +28
-12
lines changed
Expand file tree Collapse file tree 4 files changed +28
-12
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+ schedule :
7+ - cron : ' 0 0 * * 0'
8+
9+ jobs :
10+ test-node :
11+ runs-on : ubuntu-latest
12+
13+ strategy :
14+ matrix :
15+ node-version : [10.x, 12.x, 14.x]
16+
17+ steps :
18+ - uses : actions/checkout@v2
19+ - name : Use Node.js ${{ matrix.node-version }}
20+ uses : actions/setup-node@v1
21+ with :
22+ node-version : ${{ matrix.node-version }}
23+ - run : npm ci
24+ - run : npm test
25+ env :
26+ CI : true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
22# Engine.IO: the realtime engine
33
4- [ ![ Build Status] ( https://travis-ci.org /socketio/engine.io.svg?branch=master )] ( http ://travis-ci.org /socketio/engine.io)
4+ [ ![ Build Status] ( https://github.com /socketio/engine.io/workflows/CI/badge .svg )] ( https ://github.com /socketio/engine.io/actions )
55[ ![ NPM version] ( https://badge.fury.io/js/engine.io.svg )] ( http://badge.fury.io/js/engine.io )
66
77` Engine.IO ` is the implementation of transport-based
Original file line number Diff line number Diff line change @@ -1059,7 +1059,7 @@ describe("server", function() {
10591059 it ( "should trigger transport close before open for ws" , function ( done ) {
10601060 var opts = { transports : [ "websocket" ] } ;
10611061 listen ( opts , function ( port ) {
1062- var url = "ws://%s:%d" . s ( "0.0.0.50 " , port ) ;
1062+ var url = "ws://%s:%d" . s ( "0.0.0.0 " , port ) ;
10631063 var socket = new eioc . Socket ( url ) ;
10641064 socket . on ( "open" , function ( ) {
10651065 done ( new Error ( "Test invalidation" ) ) ;
You can’t perform that action at this time.
0 commit comments