Skip to content

Commit 64ef246

Browse files
committed
Run all circleci node commands in the same shell
1 parent 3da5682 commit 64ef246

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

.circleci/config.yml

+4-13
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,8 @@ jobs:
1717
- run: |
1818
source $NVM_DIR/nvm.sh
1919
nvm install v8.9.1
20-
nvm use v8.9.1
21-
nvm alias default v8.9.1
22-
node -v
23-
# nvm uninstall default
24-
# curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
25-
# sudo apt-get install -y nodejs
2620
27-
- run: npm install
28-
- run:
29-
name: Start http-server
30-
command: npm start
31-
background: true
32-
- run: npm run build
33-
- run: npm run check
21+
npm install
22+
npm start &
23+
npm run build
24+
npm run check

0 commit comments

Comments
 (0)