778a4d2af1
* 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>
31 lines
630 B
JSON
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": []
|
|
}
|
|
}
|
|
}
|