-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8866 from Fryguy/github_actions_cypress
Add Cypress to GitHub Actions
- Loading branch information
Showing
4 changed files
with
120 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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@v3 | ||
- 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@v2 | ||
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters