From 678d174e1e7fa35e21607faeeefca0c28997cf1c Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Tue, 25 Sep 2018 20:44:57 -0400 Subject: add mozilla lint job --- .circleci/config.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to '.circleci/config.yml') diff --git a/.circleci/config.yml b/.circleci/config.yml index a2539612c..7eedc3f87 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,6 +39,10 @@ workflows: - test-unit: requires: - prep-deps-npm + - test-mozilla-lint: + requires: + - prep-deps-npm + - prep-build - test-integration-mascara-chrome: requires: - prep-deps-npm @@ -59,6 +63,7 @@ workflows: requires: - test-lint - test-unit + - test-mozilla-lint - test-e2e-chrome - test-e2e-firefox - test-e2e-beta-chrome @@ -313,6 +318,16 @@ jobs: - run: name: test:coverage command: npm run test:coverage + test-mozilla-lint: + docker: + - image: circleci/node:8.11.3-browsers + steps: + - checkout + - attach_workspace: + at: . + - run: + name: test:mozilla-lint + command: npm run mozilla-lint test-integration-flat-firefox: docker: -- cgit