File tree Expand file tree Collapse file tree 3 files changed +142
-28
lines changed Expand file tree Collapse file tree 3 files changed +142
-28
lines changed Original file line number Diff line number Diff line change 1- name : Node.js CI
1+ name : Solo Test
22
33on :
44 push :
5- branches : [ develop ]
5+ branches : [ develop, main ]
66 pull_request :
77 branches : [ develop ]
88
99jobs :
10- build :
11-
10+ test :
11+ name : Run Solo Tests
1212 runs-on : ubuntu-latest
1313
1414 strategy :
1515 matrix :
1616 node-version : [16.x]
1717
1818 steps :
19- - uses : actions/checkout@v2
19+ - name : Checkout source code
20+ uses : actions/checkout@v2
21+
2022 - name : Use Node.js ${{ matrix.node-version }}
2123 uses : actions/setup-node@v2
2224 with :
2325 node-version : ${{ matrix.node-version }}
24- - run : npm ci
25- - run : npm run build --if-present
26- - run : npm test
26+
27+ - name : Run npm install
28+ run : npm ci
29+
30+ - name : Run build process
31+ run : npm run build --if-present
32+
33+ - name : Run embedded tests
34+ run : npm test
You can’t perform that action at this time.
0 commit comments