From 85778f2dc521ba8afb4695db1c158ec90e413c06 Mon Sep 17 00:00:00 2001 From: Elohina Guevara Date: Wed, 22 Jan 2020 10:23:05 +0000 Subject: [PATCH] feat(a11y): add a11y tests to Travis CI affects: @buildit/gravity-ui-web --- .travis.yml | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 89ae340b..f5fc96ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ script: - commitlint-travis - npm run-script build - npm run test + - npm run test:a11y before_deploy: - pyenv global 3.7 - pip3 install --user awscli diff --git a/package.json b/package.json index e8247f0b..4ba75fe0 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "commit": "git-cz", "lint": "lerna run lint", "test": "lerna run test", + "test:a11y": "lerna run test:a11y", "build": "lerna run build", "start": "lerna run start --parallel", "clean:cdn": "del 'cdn-dist/**/*'",