GitHub Action上のCypress実行時にvideoを保存しない
2050 ワード
GitHub ActionでCypress実行してるけど動画やスクショは普段いらねーよ圧縮時間の無駄だよという人のために。
withでconfigパラメータを指定します。
- screenshotOnRunFailure=false->エラー時のスクリーンショットを保存しない
- video=false->録画しない
name: Cypress tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cypress run
uses: cypress-io/github-action@v2
with:
build: npm run build
start: npm start
config: screenshotOnRunFailure=false,video=false
参考
https://github.com/marketplace/actions/cypress-io#config
https://docs.cypress.io/guides/guides/screenshots-and-videos
Author And Source
この問題について(GitHub Action上のCypress実行時にvideoを保存しない), 我々は、より多くの情報をここで見つけました https://qiita.com/sia-hoge/items/e252a87477caf26d102e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .