File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Appium Tests
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - ' **'
10+
11+ env :
12+ CI : true
13+ # Force terminal colors. @see https://www.npmjs.com/package/colors
14+ FORCE_COLOR : 1
15+
16+ jobs :
17+ appium1 :
18+ runs-on : ubuntu-18.04
19+
20+ strategy :
21+ matrix :
22+ node-version : [12.x]
23+
24+ steps :
25+ - uses : actions/checkout@v1
26+ - name : Use Node.js ${{ matrix.node-version }}
27+ uses : actions/setup-node@v1
28+ with :
29+ node-version : ${{ matrix.node-version }}
30+ - run : npm install
31+ - run : ' npm run test:appium-quick'
32+ env : # Or as an environment variable
33+ SAUCE_ACCESS_KEY : ${{ secrets.SAUCE_ACCESS_KEY }}
34+ SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
35+
36+
37+ appium2 :
38+
39+ runs-on : ubuntu-18.04
40+
41+ strategy :
42+ matrix :
43+ node-version : [12.x]
44+
45+ steps :
46+ - uses : actions/checkout@v1
47+ - name : Use Node.js ${{ matrix.node-version }}
48+ uses : actions/setup-node@v1
49+ with :
50+ node-version : ${{ matrix.node-version }}
51+ - run : npm install
52+ - run : ' npm run test:appium-other'
53+ env : # Or as an environment variable
54+ SAUCE_ACCESS_KEY : ${{ secrets.SAUCE_ACCESS_KEY }}
55+ SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
Original file line number Diff line number Diff line change 66 - master
77 pull_request :
88 branches :
9- - master
9+ - ' ** '
1010
1111env :
1212 CI : true
You can’t perform that action at this time.
0 commit comments