File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+ name : App SDK CI - Unit Testing
5+
6+ on :
7+ push :
8+ branches : [master]
9+
10+ pull_request :
11+ types : [opened, synchronize, reopened]
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+
17+ strategy :
18+ matrix :
19+ node-version : [14.x]
20+
21+ steps :
22+ - name : Checkout repository
23+ uses : actions/checkout@v2
24+ with :
25+ node-version : ' 14.x'
26+
27+ - name : Use Node.js
28+ uses : actions/setup-node@v2
29+ with :
30+ node-version : ' 14.x'
31+
32+ - name : Install deps
33+ run : npm ci
34+
35+ - name : Run unit test
36+ run : npm run test
You can’t perform that action at this time.
0 commit comments