scratch-www/.circleci/config.yml
2020-10-29 16:05:28 -04:00

30 lines
632 B
YAML

version: 2.1
aliases:
- &defaults
docker:
- image: circleci/node:12-browsers
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
# working_directory: ~/repo
jobs:
setup:
<<: *defaults
steps:
- run: |
echo "Setup step is happening here"
sudo -H pip install -r requirements.txt
npm --production=false ci
npm --production=false update
workflows:
build-test-deploy:
jobs:
- setup:
filters:
branches:
only:
- circleci-project-setup # remove this before releasing