-
Notifications
You must be signed in to change notification settings - Fork 35
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
fix: malformed tsconfig causing broken tests #640 #647
Merged
Conversation
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
googlebot
added
the
cla: yes
This human has signed the Contributor License Agreement.
label
May 10, 2020
stephenplusplus
approved these changes
May 10, 2020
zamnuts
added
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 10, 2020
yoshi-kokoro
removed
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 10, 2020
bcoe
added
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 16, 2020
kokoro-team
removed
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 16, 2020
bcoe
added
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 18, 2020
kokoro-team
removed
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 18, 2020
JustinBeckwith
approved these changes
May 18, 2020
Codecov Report
@@ Coverage Diff @@
## master #647 +/- ##
=======================================
Coverage 87.71% 87.71%
=======================================
Files 5 5
Lines 1164 1164
Branches 114 114
=======================================
Hits 1021 1021
Misses 143 143 Continue to review full report at Codecov.
|
bcoe
added
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 20, 2020
yoshi-kokoro
removed
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 20, 2020
bcoe
added
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 20, 2020
kokoro-team
removed
the
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
label
May 20, 2020
gcf-merge-on-green bot
pushed a commit
that referenced
this pull request
Jul 10, 2020
🤖 I have created a release \*beep\* \*boop\* --- ### [4.0.1](https://www.github.com/googleapis/cloud-profiler-nodejs/compare/v4.0.0...v4.0.1) (2020-07-09) ### Bug Fixes * **deps:** update dependency pretty-ms to v7 ([#642](https://www.github.com/googleapis/cloud-profiler-nodejs/issues/642)) ([f69c7a7](https://www.github.com/googleapis/cloud-profiler-nodejs/commit/f69c7a73b17c150c2b523412e430b5d1ac03e12a)) * **deps:** update dependency protobufjs to ~6.9.0 ([#634](https://www.github.com/googleapis/cloud-profiler-nodejs/issues/634)) ([a90149c](https://www.github.com/googleapis/cloud-profiler-nodejs/commit/a90149c4f91630d75bb41fab145713637736d21c)) * malformed tsconfig causing broken tests [#640](https://www.github.com/googleapis/cloud-profiler-nodejs/issues/640) ([#647](https://www.github.com/googleapis/cloud-profiler-nodejs/issues/647)) ([09c19c8](https://www.github.com/googleapis/cloud-profiler-nodejs/commit/09c19c88a0ca137b7970c386730b145b66b77ec3)) * **deps:** update dependency teeny-request to v7 ([#652](https://www.github.com/googleapis/cloud-profiler-nodejs/issues/652)) ([b46eb4f](https://www.github.com/googleapis/cloud-profiler-nodejs/commit/b46eb4f2552871f405579100e4e916dbde5c60d8)) * typeo in nodejs .gitattribute ([#661](https://www.github.com/googleapis/cloud-profiler-nodejs/issues/661)) ([92f46ac](https://www.github.com/googleapis/cloud-profiler-nodejs/commit/92f46ac22a510c7bab05549b83779dd4f60096b7)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#640 introduces automatic
gts clean
onprecompile
.gts
depends ontsconfig.json
, which is currently malformed due to trailing,
. This PR fixes this problem and will allow builds from #640 to finish.