- See this doc for details: https://github.com/airbytehq/airbyte/blob/master/docs/contributing-to-airbyte/developing-locally.md - Unit test does not work yet.
23 lines
395 B
Groovy
23 lines
395 B
Groovy
plugins {
|
|
id "base"
|
|
id "com.github.node-gradle.node" version "2.2.4"
|
|
}
|
|
|
|
def nodeVersion = System.getenv('NODE_VERSION') ?: '14.11.0'
|
|
|
|
node {
|
|
download = true
|
|
version = nodeVersion
|
|
}
|
|
|
|
|
|
task e2etest(type: NpmTask) {
|
|
dependsOn npmInstall
|
|
|
|
args = ['run', 'cypress:ci']
|
|
inputs.files fileTree('cypress')
|
|
inputs.file 'package.json'
|
|
inputs.file 'package-lock.json'
|
|
}
|
|
|