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
Copy file name to clipboardExpand all lines: scripts/test.sh
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,19 @@ source ~/.nvm/nvm.sh
6
6
if [[ "$(cut -d. -f1 <<<"$TRAVIS_NODE_VERSION")"-le 6 ]];then
7
7
nvm use 8
8
8
yarn install --ignore-engines --ignore-scripts
9
+
# ember requires Node >= 10 to build
9
10
yarn build --ignore="@sentry/ember"
10
11
nvm use 6
11
-
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" --ignore="@sentry/ember" --ignore="@sentry/tracing"# latest version of karma doesn't run on node 6
12
+
# browser can be tested only on Node >= v8 because Karma is not supporting anything older
13
+
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" --ignore="@sentry/ember" --ignore="@sentry/tracing"
0 commit comments