Commit 18a26e13 authored by BryceLTaylor's avatar BryceLTaylor

circleci config split setup into different run steps

parent 50c70436
......@@ -24,12 +24,20 @@ jobs:
<<: *defaults
steps:
- checkout
- run: |
echo "Setup step is happening here"
npm --production=false ci
- run:
name: "Set up Pip and install requirements"
command: |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
pip install -r requirements.txt
- run: "install npm packages"
name:
command: |
npm --production=false ci
- run:
name: deploy
command: |
echo $CIRCLE_BRANCH
integration:
<<: *defaults
steps:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment