Skip to content

Commit

Permalink
Merge 2e3076f into 8765679
Browse files Browse the repository at this point in the history
  • Loading branch information
erikrose committed Mar 17, 2021
2 parents 8765679 + 2e3076f commit 2344d8e
Show file tree
Hide file tree
Showing 4 changed files with 235 additions and 169 deletions.
29 changes: 29 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,29 @@
version: 2.1

orbs:
browser-tools: circleci/browser-tools@1.1.1

jobs:
test_js:
docker:
- image: cimg/node:15.3.0-browsers
environment:
MOZ_HEADLESS: 1
steps:
- browser-tools/install-firefox:
version: 86.0.1
- checkout
- run: make -C fathom lint test
# Upload new coveralls stats only on master, which is the only place
# COVERALLS_REPO_TOKEN is defined:
- run: [ ! -z "$COVERALLS_REPO_TOKEN" ] && make -C fathom coveralls
test_python:
docker:
- image: cimg/python:3.7.9-node
steps:
- checkout
- run: make -C cli lint test
- run: make docs
# Upload new docs only on master, which is the only place GH_TOKEN is
# defined. This saves time over doing it in a separate job.
- run: [ ! -z "$GH_TOKEN" ] && docs/deploy-docs
File renamed without changes.

0 comments on commit 2344d8e

Please sign in to comment.