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.
25 lines
459 B
25 lines
459 B
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:latest
|
|
steps:
|
|
- checkout
|
|
- run: npm install
|
|
- run: npm run lint
|
|
- run: npm run build
|
|
test:
|
|
docker:
|
|
- image: circleci/node:latest-browsers
|
|
steps:
|
|
- checkout
|
|
- run: npm install
|
|
- run:
|
|
command: npm run test:all
|
|
no_output_timeout: 30m
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- build
|
|
- test
|
|
|