File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,33 +2,33 @@ name: CI
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [master]
66 pull_request :
7- branches : [ master ]
7+ branches : [master]
88
99jobs :
1010 test :
1111 runs-on : ubuntu-latest
12-
12+
1313 strategy :
1414 matrix :
1515 node-version : [22, 24]
16-
16+
1717 steps :
18- - name : Checkout code
19- uses : actions/checkout@v4
20-
21- - name : Setup Node.js ${{ matrix.node-version }}
22- uses : actions/setup-node@v4
23- with :
24- node-version : ${{ matrix.node-version }}
25- cache : ' npm'
26-
27- - name : Install dependencies
28- run : npm ci
29-
30- - name : Build project
31- run : make build
32-
33- - name : Run tests
34- run : make test-server
18+ - name : Checkout code
19+ uses : actions/checkout@v4
20+
21+ - name : Setup Node.js ${{ matrix.node-version }}
22+ uses : actions/setup-node@v4
23+ with :
24+ node-version : ${{ matrix.node-version }}
25+ cache : " npm"
26+
27+ - name : Install dependencies
28+ run : npm ci
29+
30+ - name : Build project
31+ run : make build
32+
33+ - name : Run tests
34+ run : make test-server
You can’t perform that action at this time.
0 commit comments