We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 060339a commit d256cf1Copy full SHA for d256cf1
.github/workflows/ci.yml
@@ -0,0 +1,35 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'socket.io-parser/3.4.x'
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ test-node:
13
+ runs-on: ubuntu-latest
14
+ timeout-minutes: 10
15
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ node-version:
20
+ - 16
21
22
+ steps:
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v6
25
26
+ - name: Use Node.js ${{ matrix.node-version }}
27
+ uses: actions/setup-node@v6
28
+ with:
29
+ node-version: ${{ matrix.node-version }}
30
31
+ - name: Install dependencies
32
+ run: npm ci
33
34
+ - name: Run tests
35
+ run: npm test
.travis.yml
0 commit comments