You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
412 B
23 lines
412 B
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:8.11.2
|
|
steps:
|
|
- checkout
|
|
- run: npm install
|
|
- run: npm run build
|
|
test:
|
|
docker:
|
|
- image: circleci/node:8.11.2
|
|
steps:
|
|
- checkout
|
|
- run: sh ./tests/fix_puppeteer.sh
|
|
- run: npm install
|
|
- run: npm run test:all
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- build
|
|
- test
|