Thanks for taking the time to contribute! 😄
- Contributing to Cypress Documentation
All contributors are expected to abide by our Code of Conduct.
The documentation uses Nuxt.js to generate a static website. Refer to the Nuxt.js documentation for specifics about the Nuxt.js framework.
Fork this repository
Using GitHub, create a copy (a fork) of this repository under your personal account.
Clone your forked repository
git clone git@github.com:<your username>/cypress-documentation.git
cd cypress-documentation
This project uses @nuxt/content
which enables
you to write Vue components within markdown. Any component files placed within
the /components/global
directory will be available for use within the markdown
files. There are a
few limitations with using
Vue components in markdown.
Use <Alert>
to grab the reader's attention
with a blurb. You can change the look of the <Alert>
by setting the type
prop to info
, tip
, warning
, or danger
.
<Alert type="info">This is an important message.</Alert>
If you are starting a new page and want to add images, add a new folder to
assets/img
. For example when adding a new "Code Coverage" page
to guides/tooling
, I have created new folder assets/img/guides/tooling
and
copied an image there called coverage-object.png
. Within the markdown, I can
include the image using the
<DocsImage />
component.
<DocsImage
src="/img/guides/tooling/coverage-object.png"
alt="code coverage object"
></DocsImage>
Typically you should include the alt
and title
attributes to give the user
more information about the image.
You can embed videos within the markdown with the
<DocsVideo>
component. Currently, it
supports local files, YouTube, and Vimeo embeds. Set the src
prop to a
relative path for a local video file or the embed link for YouTube or Vimeo
videos. You should also set a title
prop describing the video for
accessibility reasons.
<DocsVideo
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Cypress Tips and Tricks"
>
Font Awesome icons can be used within markdown by
using the <Icon>
component. Set the name
prop
to the name of the Font Awesome icon you want to use. Make sure that the icon
appears in the list of imported icons within the nuxt.config.js
file under the
fontawesome
key.
<Icon name="question-circle"></Icon>
Partials are snippets of reusable markdown that can be inserted into other markdown files. You may want to use a partial when you are writing the same content across multiple markdown files.
A partial is a markdown file that you want to import and inject into another markdown file. They can contain any content that you would otherwise want to write in other markdown files.
## My First Partial
<Alert type="info">
This is my reusable partial.
</Alert>
Partials can be imported into other markdown files with the
::include{file=FILE_NAME}
directive.
## My Favorite Food
### Pizza
::include{file=path/to/pizza-recipe.md}
When the page is generated, the content of path/to/pizza-recipe.md
will be
injected into the markdown file.
The ::include{file=FILE_NAME}
directive assumes that the FILE_NAME
exists
within the content
directory. You must provide the path relative to the
content
directory as the file
property. For example, if the partial
pizza-recipe.md
was located at /content/recipes/pizza-recipe.md
, the
::include
directive would be ::include{file=recipes/pizza-recipe.md}
.
When including the ::include{file=FILE_NAME}
directive in another markdown
file, Nuxt's hot module reloading will automatically trigger the partial's
content to be inserted into the markdown file. However, if you wish to make
changes to the partial file itself, you will need to stop and restart the
development server with yarn start
to see the changes. This is because the
custom remark plugin that is enabling this partial system is only ran when the
server is started and not on each hot module reload.
It is possible to create partials using Vue components in the markdown instead
of using the ::include{file=FILE_NAME}
directive. However, there are downsides
to this approach.
Assume you have a <Partial>
Vue component. If you wanted to introduce a
<Partial>
to a markdown file and let that partial add a new header to the
page, you would need to add a header element to the <Partial>
component. Due
to how each page's table of contents is generated, this new header would not
appear in the "On This Page" section that appears on the right-hand side of most
documentation pages. The header would also be missing the anchor tag that is
otherwise automatically inserted into all headers.
For most use cases, you should use the ::include{file=FILE_NAME}
directive
when you want to inject reusable markdown into multiple files. A <Partial>
Vue
component may be a better fit if you wish to add custom interactivity to
reusable strings of text.
To add a course, blog, talk, podcast, or screencast to our docs, submit a pull request with your data added to the corresponding courses.json, blogs.json, talks.json, podcasts.json or screencasts.json file.
Add an associated image with the example within the assets/img
directory. Each image should have a resolution of 715×480. Reference the
image in the markdown document as follows:
<DocsImage src="/img/examples/name-of-file.jpg" alt="alt text describing img" />
To add a plugin, submit a pull request with the corresponding
data added to the plugins.json
file. Your
plugin should have a name, description, link to the plugin's code, as well as
any keywords.
We want to showcase plugins that work and have a good developer experience. This means that a good plugin generally has:
- Purpose of plugin articulated up front
- Installation guide
- Options and API are documented
- Easy to follow documentation. Users should not have to read the source code to get things working.
Each plugin submitted to the plugins list should have the following:
-
Integration tests with Cypress
- Demonstrates the plugin working
- Acts as real-world example usage
-
CI pipeline
-
Compatibility with at least the latest major version of Cypress
To add a page, such as a new guide or API documentation:
- Add the new page to the relevant directory under
content
. - Link to your new page in the
sidebar.json
. - Build the documentation site locally so that you can visually inspect your new page and the links to it.
- Submit a pull request for your change.
Note: If you need to change the overall layout of a page, you should create a Vue component within the
/pages
directory. The/pages
directory contains the_.vue
components responsible for generating the views for the routes/guides
,/api/
,/plugins
, etc. If you wanted to create a guide page that has a different layout from the other guide pages, you would create a component file within/guides
matching the route name that you want to use. For example, if I wanted to create a unique guide page without the sidebar about using the Dashboard, I would create a file called/pages/guides/my-dashboard-guide.vue
and create a Vue component for the specific layout I want to create. The page will then be accessible at the route/guides/my-dashboard-guide
.
Let's imagine that the Cypress team has just added a new command called
privateState
and you've picked up the task to document it.
API documentation for commands is in the
content/api/commands
directory.
- Add a file called
privatestate.md
to that directory. - Write the document. Look to the existing documentation to see how to structure the content.
- Open the
content/_data/sidebar.json
file and add a link the newprivatestate
page. In this example, we're adding a command, so we'll add a link underneath theapi
section.
"api": [
{
"title": "API",
"slug": "api",
"children": [
{
"title": "Commands",
"slug": "commands",
"children": [
{
"title": "and",
"slug": "and"
},
{
"title": "as",
"slug": "as"
},
// ...
+ {
+ "title": "privateState",
+ "slug": "privatestate"
+ }
]
}
]
}
]
The sidebar.json
file contains a tree-like structure of nodes. Each node
contains a title
, slug
, and optionally a redirect
property. The URLs for
each node in the sidebar.json
are determined by the placement of each node in
the hierarchy. For example, the privateState
node that we added in the
previous example would have a generated URL of /api/commands/privatestate
since privateState
is a child of the commands
node, which is a child of the
api
node. If the privateState
node were to contain a redirect
instead of a
slug
property, it would link to the path used as the redirect
:
{
"title": "privateState",
"redirect": "/guides/overview/why-cypress"
// creates a link to the `/guides/overview/why-cypress` page
}
Note: If a node contains a
redirect
property, there is no need to add aslug
property. Theredirect
property will always take precedence over theslug
.
The ability to nest nodes inside of other nodes gives you the ability to create a menu structure up to three (3) levels deep:
"api": [
{
"title": "API",
"slug": "api",
"children": [
{
"title": "Commands",
"slug": "commands",
"children": [
{
"title": "Custom Commands",
"slug": "custom-commands",
"children": [
{
"title": "Writing a Custom Command",
"slug": "writing-a-custom-command"
// this node should not contain any children
}
]
}
]
}
]
}
]
To delete a page:
- Delete the page from the relevant directory under
content
. - Remove the link from the the
sidebar.json
. - Build the documentation site locally so that you can visually inspect and make sure it was properly deleted.
When adding to the Changelog, create a new file in
content/_changelogs
named as the version number. Be
sure to follow the category structure defined below (in this order). Each bullet
point in the list should always be associated to an issue on the
cypress
repo and link to that issue
(except for Documentation changes).
- Summary - If it is a large release, you may write a summary explaining what the point of this release is (mostly used for breaking releases)
- Breaking Changes - The users current implementation of Cypress may break after updating.
- Deprecations - Features have been deprecated, but will not break after updating.
- Features - A new feature
- Bugfixes - A bug existed in Cypress and a PR fixed the issue
- Misc - Not a feature or bugfix, but work that was done. May be internal work that was done and associated with an issue
- Documentation Changes - our docs were updated based on behavior changes in release
You should push your local changes to your forked GitHub repository and then
open a pull request (PR) from your repo to the
cypress-io/cypress-documentation
repo.
- The PR should be from your repository to the appropriate branch in the
cypress-io/cypress-documentation
repository.- For documentation changes that are not tied to a feature release, open a PRs
against the
master
branch. - For documentation additions for unreleased features, open a PR against the
corresponding
X.Y.Z-release
branch. Once the release is performed, this branch will be merged into master by the releaser.
- For documentation changes that are not tied to a feature release, open a PRs
against the
- When opening a PR for a specific issue already open, please use the
closes #issueNumber
syntax in the pull request description—for example,closes #138
—so that the issue will be automatically closed when the PR is merged. - Please check the "Allow edits from maintainers" checkbox when submitting your PR. This will make it easier for the maintainers to make minor adjustments, to help with tests or any other changes we may need.
- All PRs against
master
will automatically create a deploy preview URL with Netlify. The deploy preview can be accessed via the PR'snetlify-cypress-docs/deploy-preview
status check:
- All branches will automatically create a branch deploy preview. The branch
deploy previews do not appear as a GitHub status check like deploy previews.
You can view your branch's deploy preview by visiting
https://$BRANCH_NAME--cypress-docs.netlify.app
where$BRANCH_NAME
is your git branch name. For example, if my branch was namedmy-branch
, my branch preview will be available athttps://my-branch--cypress-docs.netlify.app
.
We use a cla-assistant.io
web hook to make sure
every contributor assigns the rights of their contribution to Cypress.io. If you
want to read the CLA agreement, its text is in this
gist.
After making a pull request, the CLA assistant will add a review comment. Click on the link and accept the CLA. That's it!
We will try to review and merge pull requests as fast as possible. After merging, the changes will be made available on the official https://docs.cypress.io website.
Due to CircleCI API limitations, you cannot trigger a workflow build using the
API. Thus if you need to build, test and deploy your-branch
branch for
example, your best bet is to create an empty GitHub commit in the
cypress-io/cypress-documentation
repository in the your-branch
branch. We have added
make-empty-github-commit
as a dev dependency and set it as make-empty-commit
NPM script in the
package.json.
To trigger production rebuild and redeploy, use personal GitHub token and run:
GITHUB_TOKEN=<your token> npm run make-empty-commit -- --message "trigger deploy" --branch master
As always, using as-a is recommended for storing and using sensitive environment variables.