Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: remove use of @cypress/commit-message-install #909

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ install:
# we should be using npm v6+
- node --version
- npm --version
- npm i -g @cypress/commit-message-install @bahmutov/print-env
- npm i -g @bahmutov/print-env
- print-env APPVEYOR
- commit-message-install --else "npm ci"
- npm ci

cache:
# cache npm packages and Cypress binary
Expand All @@ -34,20 +34,20 @@ test_script:
- npm run lint
# only run if there is commit message
# with new version
- run-if npm run cy:version
- run-if npm run cy:verify
- run-if npm run cy:info
- run-if npm run cy:cache:list
- npm run cy:version
- npm run cy:verify
- npm run cy:info
- npm run cy:cache:list

# noticed really slow execution of some specs on Windows
# leading to failures. Trying to increase the command timeout
# maybe it will solve it
- setx CYPRESS_defaultCommandTimeout 20000
- run-if npm run test:ci:record:chrome
- run-if npm run test:ci:record
- npm run test:ci:record:chrome
- npm run test:ci:record
# removed Firefox test due to flakiness in this environment
# - run-if npm run test:ci:record:firefox
- run-if npm run test:ci:record:edge
# - npm run test:ci:record:firefox
- npm run test:ci:record:edge

# Don't actually build.
build: off
Loading