forked from project-pareto/pareto-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (68 loc) · 2.11 KB
/
main.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: App Tests
on:
push:
branches:
- "*"
pull_request:
defaults:
run:
# -l: use login shell (required when using Conda)
shell: bash -l {0}
jobs:
component_e2e_testing:
name: E2E testing (${{ matrix.os }})
runs-on: ${{ matrix.os-version }}
strategy:
fail-fast: false
matrix:
os:
- linux
- win64
include:
- os: linux
os-version: ubuntu-latest
- os: win64
os-version: windows-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
environment-file: environment.yml
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: pareto-ui-env
- name: Add project pareto version to .env file
working-directory: ./electron/ui
run: |
echo REACT_APP_PARETO_VERSION=1.0.0 >> .env
- name: get idaes extensions
run: idaes get-extensions
- name: Install correct branch of pareto
working-directory: ../
run: git clone https://github.com/project-pareto/project-pareto.git && cd project-pareto && pip install --progress-bar off .
- name: Install electron JS dependencies
run: |
npm --prefix electron clean-install
- name: Install frontendJS dependencies
run: |
npm --prefix electron/ui clean-install
- name: run component tests
run: npm --prefix electron/ui test
- name: run backend server
working-directory: backend/app
run: python main.py & sleep 10
- name: run frontend
run: npm --prefix electron/ui start & sleep 30
- name: Cypress e2e tests
working-directory: electron/ui
timeout-minutes: 24
run: |
npx cypress run
- name: Upload artifact for screenshots & videos
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress_results-${{ matrix.os }}
path: |
electron/ui/cypress/screenshots/
electron/ui/cypress/videos/