CI testing for editor distro, webpack bundling and smoke test (#1675)

Bundle/Test with latest VS Code.
This commit is contained in:
Peng Lyu 2019-11-18 11:50:42 -08:00 committed by GitHub
parent 68d9e00fbe
commit 3d0dae8fe1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 3237 additions and 1 deletions

View file

@ -852,3 +852,8 @@ gulp.task('simpleserver', taskSeries(generateTestSamplesTask, function() {
createSimpleServer(SERVER_ROOT, 8080);
createSimpleServer(SERVER_ROOT, 8088);
}));
gulp.task('ciserver', taskSeries(generateTestSamplesTask, function () {
const SERVER_ROOT = path.normalize(path.join(__dirname, './'));
createSimpleServer(SERVER_ROOT, 8080);
}));