PR-440978: trying to fix CI.

This commit is contained in:
Alejandro Lembke Barrientos 2023-03-03 08:38:32 -06:00
parent b2087312c3
commit 07761b4f58
2 changed files with 2 additions and 2 deletions

View File

@ -19,12 +19,12 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- uses: actions/setup-node@v3
# Install NPM dependencies, cache them correctly # Install NPM dependencies, cache them correctly
# and run all Cypress tests # and run all Cypress tests
- name: Cypress run - name: Cypress run
uses: cypress-io/github-action@v5 # use the explicit version number uses: cypress-io/github-action@v5 # use the explicit version number
with: with:
build: npm ci --legacy-peer-deps
start: npm run cy:run start: npm run cy:run
publish-npm: publish-npm:
needs: [ build, cypress-run ] needs: [ build, cypress-run ]

View File

@ -25,12 +25,12 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- uses: actions/setup-node@v3
# Install NPM dependencies, cache them correctly # Install NPM dependencies, cache them correctly
# and run all Cypress tests # and run all Cypress tests
- name: Cypress run - name: Cypress run
uses: cypress-io/github-action@v5 # use the explicit version number uses: cypress-io/github-action@v5 # use the explicit version number
with: with:
build: npm ci --legacy-peer-deps
start: npm run cy:run start: npm run cy:run
test-build-package: test-build-package:
needs: [ test, cypress-run ] needs: [ test, cypress-run ]