Skip to content

Commit fcef0ee

Browse files
committed
Merge branch 'codeceptjs-v3.0' of github.com:Codeception/CodeceptJS into codeceptjs-v3.0
2 parents 31c74e7 + c310c2f commit fcef0ee

2 files changed

Lines changed: 56 additions & 1 deletion

File tree

.github/workflows/appium.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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 }}

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
pull_request:
88
branches:
9-
- master
9+
- '**'
1010

1111
env:
1212
CI: true

0 commit comments

Comments
 (0)