File tree Expand file tree Collapse file tree 3 files changed +44
-25
lines changed Expand file tree Collapse file tree 3 files changed +44
-25
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ test-node :
9+ runs-on : ubuntu-latest
10+
11+ strategy :
12+ matrix :
13+ node-version : [8.x, 10.x]
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : Use Node.js ${{ matrix.node-version }}
18+ uses : actions/setup-node@v1
19+ with :
20+ node-version : ${{ matrix.node-version }}
21+ - run : npm ci
22+ - run : npm test
23+ env :
24+ CI : true
25+
26+ test-browser :
27+ runs-on : ubuntu-latest
28+
29+ steps :
30+ - uses : actions/checkout@v2
31+ - name : Use Node.js
32+ uses : actions/setup-node@v1
33+ with :
34+ node-version : ' 10.x'
35+ - run : npm ci
36+ - run : npm test
37+ env :
38+ CI : true
39+ BROWSERS : 1
40+ NGROK_AUTH_TOKEN : ${{ secrets.NGROK_AUTH_TOKEN }}
41+ SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
42+ SAUCE_ACCESS_KEY : ${{ secrets.SAUCE_ACCESS_KEY }}
43+ timeout-minutes : 20
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
22# socket.io-client
33
4- [ ![ Build Status] ( https://secure.travis-ci.org /socketio/socket.io-client.svg?branch=master )] ( http ://travis-ci.org /socketio/socket.io-client)
4+ [ ![ Build Status] ( https://github.com /socketio/socket.io-client/workflows/CI/badge .svg )] ( https ://github.com /socketio/socket.io-client/actions )
55[ ![ Dependency Status] ( https://david-dm.org/socketio/socket.io-client.svg )] ( https://david-dm.org/socketio/socket.io-client )
66[ ![ devDependency Status] ( https://david-dm.org/socketio/socket.io-client/dev-status.svg )] ( https://david-dm.org/socketio/socket.io-client#info=devDependencies )
77[ ![ NPM version] ( https://badge.fury.io/js/socket.io-client.svg )] ( https://www.npmjs.com/package/socket.io-client )
You can’t perform that action at this time.
0 commit comments