You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 1, 2024. It is now read-only.
FROM cypress/base:14
WORKDIR /app
# dependencies will be installed only if the package files changeCOPY package*.json ./
# by setting CI environment variable we switch the Cypress install messages# to small "started / finished" and avoid 1000s of lines of progress messages# https://github.com/cypress-io/cypress/issues/1243ENV CI=1
RUN npm ci
# verify that Cypress has been installed correctly.# running this command separately from "cypress run" will also cache its result# to avoid verifying again when running the testsRUN npx cypress verify
Folder structure as below: