PR-579798: trying to fix Cypress component testing.

This commit is contained in:
Alejandro Lembke Barrientos 2023-03-07 11:39:02 -06:00
parent 220e488570
commit 69fa169a71
2 changed files with 6 additions and 0 deletions

View File

@ -35,9 +35,12 @@ jobs:
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress install
run: npm i
- name: Cypress run
uses: cypress-io/github-action@v5 # use the explicit version number
with:
install: false
component: true
publish-npm:
needs: [ test, cypress-run, cypress-run-component ]

View File

@ -41,9 +41,12 @@ jobs:
uses: actions/checkout@v3
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress install
run: npm i
- name: Cypress run
uses: cypress-io/github-action@v5 # use the explicit version number
with:
install: false
component: true
test-build-package:
needs: [ test, cypress-run, cypress-run-component ]