We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1edbf2d commit e756d73Copy full SHA for e756d73
.travis.yml
@@ -9,3 +9,6 @@ cache:
9
- packages/create-react-app/node_modules
10
- packages/react-scripts/node_modules
11
script: tasks/e2e.sh
12
+env:
13
+ - USE_YARN=no
14
+ - USE_YARN=yes
tasks/e2e.sh
@@ -53,6 +53,12 @@ set -x
53
cd ..
54
root_path=$PWD
55
56
+if [ "$USE_YARN" = "yes" ]
57
+then
58
+ # Install Yarn so that the test can use it to install packages.
59
+ npm install -g yarn
60
+fi
61
+
62
npm install
63
64
# Lint own code
0 commit comments