Skip to content
Snippets Groups Projects
Unverified Commit 702833f6 authored by Diogo Mendes's avatar Diogo Mendes Committed by GitHub
Browse files

Creating cypress action on CI (#20904)

* Creating cypress action

* Adding shell
parent 9e8b4fc7
No related branches found
No related tags found
No related merge requests found
name: Prepare cypress environment
runs:
using: "composite"
steps:
- name: Get Cypress cache
uses: actions/cache@v2
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-Cypress-${{ hashFiles('**/yarn.lock') }}
- name: Ensure that Cypress executable is ready
run: |
yarn cypress install
yarn cypress cache path
yarn cypress cache list
yarn cypress verify
shell: bash
......@@ -102,18 +102,8 @@ jobs:
uses: ./.github/actions/prepare-frontend
- name: Prepare back-end environment
uses: ./.github/actions/prepare-backend
- name: Get Cypress cache
uses: actions/cache@v2
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-Cypress-${{ hashFiles('**/yarn.lock') }}
- name: Ensure that Cypress executable is ready
run: |
yarn cypress install
yarn cypress cache path
yarn cypress cache list
yarn cypress verify
- name: Prepare cypress environment
uses: ./.github/actions/prepare-cypress
- uses: actions/download-artifact@v2
name: Retrieve uberjar artifact for ${{ matrix.edition }}
......
......@@ -45,18 +45,8 @@ jobs:
uses: ./.github/actions/prepare-frontend
- name: Prepare back-end environment
uses: ./.github/actions/prepare-backend
- name: Get Cypress cache
uses: actions/cache@v2
with:
path: ~/.cache/Cypress
key: ${{ runner.os }}-Cypress-${{ hashFiles('**/yarn.lock') }}
- name: Ensure that Cypress is ready
run: |
yarn cypress install
yarn cypress cache path
yarn cypress cache list
yarn cypress verify
- name: Prepare cypress environment
uses: ./.github/actions/prepare-cypress
- uses: actions/download-artifact@v2
name: Retrieve uberjar artifact
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment