Skip to content

Commit 2e1712e

Browse files
committed
Dont test eslint config/plugin on Node <= v8
1 parent 5303688 commit 2e1712e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ if [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 6 ]]; then
1010
yarn build --ignore="@sentry/ember"
1111
nvm use 6
1212
# 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"
13+
yarn test --ignore="@sentry/browser" --ignore="@sentry/integrations" --ignore="@sentry/react" --ignore="@sentry/ember" --ignore="@sentry/tracing" --ignore="@sentry-internal/eslint-plugin-sdk" --ignore="@sentry-internal/eslint-config-sdk"
1414
elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 8 ]]; then
1515
yarn install --ignore-engines --ignore-scripts
1616
# ember requires Node >= 10 to build
1717
yarn build --ignore="@sentry/ember"
1818
# tracing, ember and react work only on Node >= v10
19-
yarn test --ignore="@sentry/tracing" --ignore="@sentry/react" --ignore="@sentry/ember"
19+
yarn test --ignore="@sentry/tracing" --ignore="@sentry/react" --ignore="@sentry/ember" --ignore="@sentry-internal/eslint-plugin-sdk" --ignore="@sentry-internal/eslint-config-sdk"
2020
else
2121
yarn install
2222
yarn build

0 commit comments

Comments
 (0)