-
-
Notifications
You must be signed in to change notification settings - Fork 34.3k
doc: add descriptions of CI jobs #12555
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
Closed
Closed
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5788c98
Update COLLABORATOR_GUIDE.md
morrme e8897e0
Update COLLABORATOR_GUIDE.md
morrme bc520c7
update job definitions
morrme c94b070
doc: update COLLABORATOR_GUIDE.md
morrme 7642551
Update COLLABORATOR_GUIDE.md
morrme c23bc24
doc: update COLLABORATOR_GUIDE.md
morrme 696e2aa
doc: remove `node-test-commit` from CI jobs list
morrme c18f0b9
doc: additional changes to COLLABORATOR_GUIDE.md
morrme 31ce401
doc: update CI job descriptions
morrme 5f0eb87
Merge branch 'master' into doc-ci-jobs
morrme File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -87,6 +87,25 @@ All pull requests that modify executable code should be subjected to | |
| continuous integration tests on the | ||
| [project CI server](https://ci.nodejs.org/). | ||
|
|
||
| #### Useful CI Jobs | ||
|
|
||
| * [`node-test-pull-request`](https://ci.nodejs.org/job/node-test-pull-request/) | ||
| is the standard CI run we do to check Pull Requests. It triggers `node-test-commit`, | ||
| which runs the `build-ci` and `test-ci` targets on all supported platforms. | ||
|
|
||
| * [`node-test-linter`](https://ci.nodejs.org/job/node-test-linter/) | ||
| only runs the linter targets, which is useful for changes that only affect comments | ||
| or documentation. | ||
|
|
||
| * [`citgm-smoker`](https://ci.nodejs.org/job/citgm-smoker/) | ||
| uses [`CitGM`](https://github.com/nodejs/citgm) to allow you to run `npm install && npm test` | ||
| on a large selection of common modules. This is useful to check whether a change will | ||
| cause breakage in the ecosystem. To test node ABI changes you can run [`citgm-abi-smoker`](https://ci.nodejs.org/job/citgm-abi-smoker/). | ||
|
|
||
| * [`node-stress-single-test`](https://ci.nodejs.org/job/node-stress-single-test/) | ||
| is designed to allow one to run a single test over and over on a specific platform | ||
|
||
| to confirm that the test is reliable. | ||
|
|
||
| ### Internal vs. Public API | ||
|
|
||
| Due to the nature of the JavaScript language, it can often be difficult to | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be changed to
or
or is it fine as is?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes please,
Node.jsin text wherever possible.Impressed that you're reviewing your own PR 😁.