We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If i create my task with the following json structure;
{ "options": { "reportpath": false, "stoponerror": false, "path": "_Build/Shared Files/Temp/vaidation.json", "failHard": true }, "Accordion": { "files": { "src": "Accordion/preview/index.html" } }, "Blank": { "files": { "src": "Blank/preview/index.html" } }, "Chart": { "files": { "src": "Chart/preview/index.html" } }, "Figure": { "files": { "src": "Figure/preview/index.html" } } }
It only runs the validation on the first task and then skips over the rest;
Running "validation:Accordion" (validation) task Validation started for.. _Stream/Stream Templates/Accordion/preview/index.html
Validation successful..
Running "validation:Blank" (validation) task
Running "validation:Chart" (validation) task
Running "validation:Figure" (validation) task
Done, without errors.
The reason my json is like this is because i need separate watches that can run independently e.g. validation:Blank
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If i create my task with the following json structure;
{
"options": {
"reportpath": false,
"stoponerror": false,
"path": "_Build/Shared Files/Temp/vaidation.json",
"failHard": true
},
"Accordion": {
"files": {
"src": "Accordion/preview/index.html"
}
},
"Blank": {
"files": {
"src": "Blank/preview/index.html"
}
},
"Chart": {
"files": {
"src": "Chart/preview/index.html"
}
},
"Figure": {
"files": {
"src": "Figure/preview/index.html"
}
}
}
It only runs the validation on the first task and then skips over the rest;
Running "validation:Accordion" (validation) task
Validation started for.. _Stream/Stream Templates/Accordion/preview/index.html
Running "validation:Blank" (validation) task
Running "validation:Chart" (validation) task
Running "validation:Figure" (validation) task
Done, without errors.
The reason my json is like this is because i need separate watches that can run independently e.g. validation:Blank
The text was updated successfully, but these errors were encountered: