forked from ManageIQ/manageiq-ui-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (74 loc) · 1.89 KB
/
cypress.yaml
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
---
name: Cypress
on:
workflow_dispatch:
schedule:
- cron: 0 0 * * 0
jobs:
cypress:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '3.0'
node-version:
- 18
cypress-browser:
- chrome
- firefox
- edge
services:
postgres:
image: manageiq/postgresql:13
env:
POSTGRESQL_USER: root
POSTGRESQL_PASSWORD: smartvm
POSTGRESQL_DATABASE: vmdb_development
options: "--health-cmd pg_isready --health-interval 2s --health-timeout 5s
--health-retries 5"
ports:
- 5432:5432
memcached:
image: manageiq/memcached:1.5
ports:
- 11211:11211
env:
TEST_SUITE: spec:cypress
CYPRESS_BROWSER: ${{ matrix.cypress-browser }}
PGHOST: localhost
PGPASSWORD: smartvm
steps:
- uses: actions/checkout@v4
- name: Install Edge
uses: browser-actions/setup-edge@v1
if: ${{ matrix.cypress-browser == 'edge' }}
- name: Set up system
run: bin/before_install
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby-version }}"
bundler-cache: true
timeout-minutes: 30
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "${{ matrix.node-version }}"
cache: yarn
- name: Prepare tests
run: bin/setup
env: # We will be using the development database, so no need for the test database
SKIP_TEST_RESET: "true"
SKIP_DATABASE_RESET: "false"
- name: Run tests
run: bundle exec rake
- name: Save artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-${{ matrix.cypress-browser }}
path: |
cypress/screenshots/
cypress/videos/
spec/manageiq/log/