mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 23:57:55 -05:00
30 lines
632 B
YAML
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
|