Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.

AccessLint/accesslint-ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0d39eeb · Aug 20, 2017

History

79 Commits
Jul 31, 2016
Apr 30, 2017
Apr 30, 2017
Jul 31, 2016
Dec 8, 2016
Jul 29, 2016
Jun 24, 2016
Jun 24, 2016
Jun 24, 2016
Jun 24, 2016
Jun 24, 2016
Aug 20, 2017
Jun 24, 2016
Apr 22, 2017
Jul 31, 2016

Repository files navigation

Deprecated

Use the AccessLint GitHub integration or check out axe-cli for development testing.

Accesslint::Ci

https://robots.thoughtbot.com/introducing-accesslint-web-accessibility-testing-in-ci

Runs accesslint-cli in CircleCI and comments on GitHub pull requests with new accessibility issues.

accesslint-ci will crawl a host site and run accessibility assertions on the pages. If there are any new accessibility issues, accesslint-ci will comment on the pull request that initiated the build in CircleCI.

View an example

Installation

  1. Authenticate with GitHub at https://accesslint.com to get an API token.

Circle CI

  1. Set up your CircleCI environment (API tokens for CircleCI and GitHub, artifacts)
  2. Install dependencies (nodejs, accesslint-cli, accesslint-ci)
  3. Start a development server
  4. Run accesslint-ci scan <development server e.g. http://localhost:3000>

In your circle.yml file:

general:
  artifacts:
    - "tmp/accesslint.log"

machine:
  environment:
    ACCESSLINT_API_TOKEN: <API token from https://accesslint.com>
    ACCESSLINT_GITHUB_USER: <GitHub user authenticated at https://accesslint.com>
  node:
    version: 6.1.0

dependencies:
  override:
    - npm install -g accesslint-cli
    - gem install accesslint-ci

test:
  post:
    - bundle exec rails server -d -p 3000
    - accesslint-ci scan http://localhost:3000

Private Repo Support

AccessLint does not support commenting on private repos right now. Follow the project backlog for plans.

TravisCI, Jenkins, etc.

AccessLint CI only works in CircleCI right now. See #15

License

AccessLint CI is Copyright © 2016 thoughtbot, inc. It is free software, and may be redistributed under the terms specified by the MIT License.

About thoughtbot

thoughtbot

AccessLint is maintained and funded by thoughtbot.

We love open source software! See our other projects or hire us to design, develop, and grow your product.