You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yo electrode-component --projectName=product-card --packageName=product-card --packageGitHubOrg=walmartlabs --developerName="Arpan Nanavati" --ghUser=ananavati --ghRepo=product-card --createDirectory=Y
2
+
3
+
language: node_js
4
+
5
+
node_js:
6
+
- "4.2"
7
+
- "5.0"
8
+
9
+
brances:
10
+
only:
11
+
- master
12
+
13
+
before_install:
14
+
- currentfolder=${PWD##*/}
15
+
- if [ "$currentfolder" != 'electrode-archetype-react-component' ]; then cd .. && eval "mv $currentfolder electrode-archetype-react-component" && cd electrode-archetype-react-component; fi
16
+
- npm install
17
+
- cd dev ; npm install ; cd ..
18
+
19
+
script:
20
+
# run the archetype check task.
21
+
- gulp archetype:check
22
+
23
+
# create a new component using electrode-component yeoman generator to run the components unit-tests.
24
+
- npm install -g yo gulp generator-electrode-component
0 commit comments