-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove code coverage from pr diff bot
This is getting stuck somewhere while running the tests, so I've temporarily disabled the code coverage checks to allow the browser size check to run
- Loading branch information
1 parent
8d607ca
commit 4cb3ed8
Showing
2 changed files
with
3 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,10 +24,8 @@ jobs: | |
npm ci | ||
npx lerna bootstrap | ||
npm run build | ||
npm run test:coverage | ||
cat packages/browser/dist/bugsnag.min.js | wc -c > .diff/size-before-minified | ||
cat packages/browser/dist/bugsnag.min.js | gzip | wc -c > .diff/size-before-gzipped | ||
cp coverage/coverage-summary.json .diff/coverage-before.json | ||
- name: Checkout PR branch | ||
uses: actions/checkout@v1 | ||
|
@@ -41,10 +39,8 @@ jobs: | |
npm ci | ||
npx lerna bootstrap | ||
npm run build | ||
npm run test:coverage | ||
cat packages/browser/dist/bugsnag.min.js | wc -c > .diff/size-after-minified | ||
cat packages/browser/dist/bugsnag.min.js | gzip | wc -c > .diff/size-after-gzipped | ||
cp coverage/coverage-summary.json .diff/coverage-after.json | ||
- name: Run danger | ||
uses: danger/[email protected] | ||
|
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