Skip to content
This repository was archived by the owner on Mar 19, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,21 @@ To run axe-cli from your development environment, run:
```
node index.js www.deque.com
```

## Publishing

Publishing `axe-cli` to the npm registry is handled by CircleCI. To publish a stable version, you'll do something like this:

```
# Ensure you have the latest code
$ git checkout develop
$ git pull
# Create a release branch
$ git create-branch release-<YYYY-MM-DD>
# Run the release script
$ npm run release
# push it
$ git push --follow-tags origin release-<YYYY-MM-DD>
```

Then open a release PR into the `master` branch.
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,21 +175,3 @@ To see additional information like test tool name, version and environment detai
```
axe www.deque.com --verbose
```

## Publishing

Publishing `axe-cli` to the npm registry is handled by CircleCI. To publish a stable version, you'll do something like this:

```
# Ensure you have the latest code
$ git checkout develop
$ git pull
# Create a release branch
$ git create-branch release-<YYYY-MM-DD>
# Run the release script
$ npm run release
# push it
$ git push --follow-tags origin release-<YYYY-MM-DD>
```

Then open a release PR into the `master` branch.