mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
circleci config split setup into different run steps
This commit is contained in:
parent
50c70436e2
commit
18a26e131a
1 changed files with 14 additions and 6 deletions
|
@ -24,12 +24,20 @@ jobs:
|
|||
<<: *defaults
|
||||
steps:
|
||||
- checkout
|
||||
- run: |
|
||||
echo "Setup step is happening here"
|
||||
npm --production=false ci
|
||||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
||||
python get-pip.py
|
||||
pip install -r requirements.txt
|
||||
- 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:
|
||||
|
|
Loading…
Reference in a new issue