This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Enabled quiet mode for CI runs
- Loading branch information
1 parent
92675fa
commit 0265fcb
Showing
6 changed files
with
402 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#! /bin/bash | ||
|
||
set -x | ||
VERSIONED_MODE="${VERSIONED_MODE:---minor}" | ||
SAMPLES="${SAMPLES:-15}" | ||
C8_REPORTER="${C8_REPORTER:-lcov}" | ||
|
||
C8="c8 -o ./coverage/versioned --merge-async -r $C8_REPORTER" | ||
|
||
# OUTPUT_MODE maps to `--print` of the versioned-tests runner. | ||
# Known values are "simple", "pretty", and "quiet". | ||
OUTPUT_MODE="${OUTPUT_MODE:-pretty}" | ||
|
||
$C8 ./node_modules/.bin/versioned-tests $VERSIONED_MODE --print $OUTPUT_MODE --samples $SAMPLES --all -i 2 'tests/versioned/*.tap.js' |
Oops, something went wrong.