remix-project mirror
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.
remix-project/.circleci/config.yml

44 lines
943 B

7 years ago
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
remix-lib:
docker:
6 years ago
- image: circleci/node:9.11.2
7 years ago
environment:
working_directory: ~/repo
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-lib && npm test
7 years ago
remix-debug:
docker:
6 years ago
- image: circleci/node:9.11.2
7 years ago
environment:
working_directory: ~/repo
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-debug && npm test
6 years ago
remix-analyzer:
docker:
6 years ago
- image: circleci/node:9.11.2
6 years ago
environment:
working_directory: ~/repo
steps:
- checkout
- run: npm install && npm run bootstrap
- run: cd remix-analyzer && npm test
7 years ago
workflows:
version: 2
build_all:
jobs:
- remix-lib
7 years ago
- remix-debug
- remix-analyzer