Skip to content

Commit

Permalink
Use node 9 for RN CI job until jestjs/jest#6075 gets released
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypnosphi committed Apr 30, 2018
1 parent 91f8463 commit 858e183
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ object OpenSourceProjects_Storybook_ReactNative : BuildType({
yarn
yarn bootstrap --core --reactnative --reactnativeapp
""".trimIndent()
dockerImage = "node:latest"
dockerImage = "node:9"
}
script {
name = "react-native-vanilla"
scriptContent = """
cd examples/react-native-vanilla
yarn storybook --smoke-test
""".trimIndent()
dockerImage = "node:latest"
dockerImage = "node:9"
}
script {
name = "crna-kitchen-sink"
scriptContent = """
cd examples/crna-kitchen-sink
yarn storybook --smoke-test
""".trimIndent()
dockerImage = "node:latest"
dockerImage = "node:9"
}
script {
name = "Test"
scriptContent = """
yarn test --reactnative --coverage --runInBand --teamcity
yarn coverage
""".trimIndent()
dockerImage = "node:latest"
dockerImage = "node:9"
}
}

Expand Down

0 comments on commit 858e183

Please sign in to comment.