diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index bc0b04b..8e7f206 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -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 ] diff --git a/.github/workflows/npm-test.yml b/.github/workflows/npm-test.yml index 66a7d24..ea83c0c 100644 --- a/.github/workflows/npm-test.yml +++ b/.github/workflows/npm-test.yml @@ -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 ]