1
0
mirror of synced 2026-01-03 06:02:23 -05:00
Files
airbyte/airbyte-e2e-testing/build.gradle
2021-10-19 11:20:21 -07:00

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'
}