forked from superdesk/newsroom-core
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (46 loc) · 1.36 KB
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: "E2E"
on: [push, pull_request]
jobs:
e2e:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8']
node-version: ['14']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install node_modules
run: npm install
- name: Install APT packages
run: |
sudo apt-get update
sudo apt-get install pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Upgrade python tools
run: pip install --upgrade pip wheel setuptools
- name: Install python modules
run: pip install -e .
- name: Install CypressIO
run: cd e2e && npm install
- name: Build Client
run: cd e2e && npm run build
- name: Start Services
run: ./scripts/ci-start-services.sh
- name: E2E
working-directory: ./e2e
run: npm run cypress-ci
env:
CYPRESS_SCREENSHOTS_FOLDER: /tmp/cypress
- name: Upload screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: screenshots-e2e
path: /tmp/cypress/**/*.png