astro/turbo.json
Fred K. Schott 778a4d2af1
update test coverage to include more Node and Windows tests (#4144)
* update node test coverage to include v18, more windows tests

* chore(ci): update turbo to account for OS and NODE_VERSION

* chore: disable node@18, add TODO

Co-authored-by: Nate Moore <nate@astro.build>
2022-08-05 15:14:19 -05:00

31 lines
630 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"]
},
"build:ci": {
"dependsOn": ["^build:ci"],
"outputs": ["dist/**/*", "!vendor/**", "mod.js", "mod.js.map"]
},
"dev": {
"cache": false
},
"test": {
"outputs": [],
"dependsOn": [
"$RUNNER_OS",
"$NODE_VERSION"
]
},
"benchmark": {
"dependsOn": ["^build"],
"outputs": []
},
"lint": {
"outputs": []
}
}
}