forked from plotly/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request plotly#141 from jbampton/style-circleci-config
💄 the CircleCI config file.
- Loading branch information
1 parent
1ef9a29
commit 92ccc8e
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,11 +14,11 @@ jobs: | |
- checkout | ||
|
||
- run: | ||
name: Write job name | ||
name: ✍️ Write job name | ||
command: echo $CIRCLE_JOB > circlejob.txt | ||
|
||
- run: | ||
name: Install dependencies | ||
name: 🏗️ Install dependencies | ||
command: | | ||
sudo pip install virtualenv --upgrade | ||
python -m venv venv || virtualenv venv | ||
|
@@ -27,7 +27,7 @@ jobs: | |
npm install --ignore-scripts | ||
- run: | ||
name: Install dependencies (dash) | ||
name: 🏗️ Install dependencies (dash) | ||
command: | | ||
git clone --depth 1 [email protected]:plotly/dash.git dash-main | ||
git clone --depth 1 [email protected]:plotly/dash-core-components.git | ||
|
@@ -39,15 +39,15 @@ jobs: | |
cd dash-table && npm install --ignore-scripts && npm run build && pip install -e . && cd .. | ||
- run: | ||
name: Build | ||
name: 🧰 Build | ||
command: | | ||
. venv/bin/activate | ||
python --version | ||
npm run clean | ||
npm run build | ||
- run: | ||
name: Run tests | ||
name: 🧪 Run tests | ||
command: | | ||
. venv/bin/activate | ||
python --version | ||
|