File tree Expand file tree Collapse file tree 3 files changed +14
-22
lines changed Expand file tree Collapse file tree 3 files changed +14
-22
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ${{ matrix.os }}
10
10
strategy :
11
11
matrix :
12
+ arch :
13
+ - x64
14
+ - x86
12
15
node :
13
16
- 10
14
17
- 12
@@ -18,14 +21,22 @@ jobs:
18
21
- macOS-latest
19
22
- ubuntu-latest
20
23
- windows-latest
24
+ exclude :
25
+ - arch : x86
26
+ os : macOS-latest
27
+ - arch : x86
28
+ os : ubuntu-latest
21
29
steps :
22
30
- uses : actions/checkout@v2
23
31
- uses : actions/setup-node@v2
24
32
with :
25
33
node-version : ${{ matrix.node }}
34
+ architecture : ${{ matrix.arch }}
26
35
- run : npm install
27
36
- run : npm run lint
28
- if : matrix.node == 16 && matrix.os == 'ubuntu-latest'
37
+ if :
38
+ matrix.os == 'ubuntu-latest' && matrix.node == 16 && matrix.arch ==
39
+ ' x64'
29
40
- run : npm test
30
41
- run :
31
42
echo ::set-output name=job_id::$(node -e
35
46
-
uses :
coverallsapp/[email protected]
36
47
with :
37
48
flag-name :
38
- ${{ steps.get_job_id.outputs.job_id }} (Node.js ${{ matrix.node }}
39
- on ${{ matrix.os }})
49
+ ${{ steps.get_job_id.outputs.job_id }} (Node.js ${{ matrix.node }} -
50
+ $ {{ matrix.arch }} on ${{ matrix.os }})
40
51
github-token : ${{ secrets.GITHUB_TOKEN }}
41
52
parallel : true
42
53
coverage :
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Version npm] ( https://img.shields.io/npm/v/ws.svg?logo=npm )] ( https://www.npmjs.com/package/ws )
4
4
[ ![ Build] ( https://img.shields.io/github/workflow/status/websockets/ws/CI/master?label=build&logo=github )] ( https://github.com/websockets/ws/actions?query=workflow%3ACI+branch%3Amaster )
5
- [ ![ Windows x86 Build] ( https://img.shields.io/appveyor/ci/lpinca/ws/master.svg?logo=appveyor )] ( https://ci.appveyor.com/project/lpinca/ws )
6
5
[ ![ Coverage Status] ( https://img.shields.io/coveralls/websockets/ws/master.svg?logo=coveralls )] ( https://coveralls.io/github/websockets/ws )
7
6
8
7
ws is a simple to use, blazing fast, and thoroughly tested WebSocket client and
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments