File tree Expand file tree Collapse file tree 2 files changed +27
-26
lines changed Expand file tree Collapse file tree 2 files changed +27
-26
lines changed Original file line number Diff line number Diff line change 7
7
branches : [main]
8
8
9
9
jobs :
10
- build :
10
+ build-ubuntu :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v4
14
- - run : npm ci
15
- - run : npm test
13
+ - name : Checkout code
14
+ uses : actions/checkout@v4
15
+ - name : Install dependencies
16
+ run : npm ci
17
+ - name : Run tests
18
+ run : npm test
19
+
20
+ build-windows :
21
+ runs-on : windows-latest
22
+ steps :
23
+ - name : Checkout code
24
+ uses : actions/checkout@v4
25
+ - name : Set up Node.js
26
+ uses : actions/setup-node@v3
27
+ with :
28
+ node-version : " 17"
29
+ - name : Display Node.js version
30
+ run : node --version
31
+ - name : Display npm version
32
+ run : npm --version
33
+ - name : Display Python version
34
+ run : python --version
35
+ - name : Install dependencies
36
+ run : npm ci
37
+ - name : Run tests
38
+ run : npm test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments