Skip to content

Commit

Permalink
Teamcity: use latest node
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypnosphi committed Jun 28, 2018
1 parent 27e44b4 commit e3e1d27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ examples/official-storybook/image-snapshots/__image_snapshots__ => image-snapsho
ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget
yarn test --image --teamcity
""".trimIndent()
dockerImage = "node:8"
dockerImage = "node:%docker.node.version%"
}
}

Expand Down
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:9"
dockerImage = "node:%docker.node.version%"
}
script {
name = "react-native-vanilla"
scriptContent = """
cd examples/react-native-vanilla
yarn storybook --smoke-test
""".trimIndent()
dockerImage = "node:9"
dockerImage = "node:%docker.node.version%"
}
script {
name = "crna-kitchen-sink"
scriptContent = """
cd examples/crna-kitchen-sink
yarn storybook --smoke-test
""".trimIndent()
dockerImage = "node:9"
dockerImage = "node:%docker.node.version%"
}
script {
name = "Test"
scriptContent = """
yarn test --reactnative --coverage --runInBand --teamcity
yarn coverage
""".trimIndent()
dockerImage = "node:9"
dockerImage = "node:%docker.node.version%"
}
}

Expand Down

0 comments on commit e3e1d27

Please sign in to comment.