use cypress reporter in github actions

This commit is contained in:
Philipp Kühn 2021-02-05 21:06:22 +01:00
parent a4866dc946
commit a8815826f6
2 changed files with 4 additions and 1 deletions

3
cypress.json Normal file
View File

@ -0,0 +1,3 @@
{
"reporter": "list"
}

View File

@ -15,7 +15,7 @@
"lint": "eslint --quiet --no-error-on-unmatched-pattern ./",
"lint:fix": "eslint --fix --quiet --no-error-on-unmatched-pattern ./",
"test:open": "cypress open --project tests",
"test": "cypress run --project tests --quiet --reporter list",
"test": "cypress run --project tests",
"build:docs": "yarn --cwd ./docs build",
"build:ci": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --ci --scope @tiptap/$package || exit 1; done",
"build:packages": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --scope @tiptap/$package || exit 1; done",