Move gulp typestest to a separate GitHub Actions workflow

This way we introduce more parallelism in the GitHub Actions tests, which should reduce overall runtime and thus cannot hurt.
This commit is contained in:
Jonas Jenwald 2023-11-12 09:51:37 +01:00
parent e0e5be2c62
commit d89ca97887
2 changed files with 35 additions and 4 deletions

View file

@ -2437,7 +2437,4 @@ gulp.task("externaltest", function (done) {
done();
});
gulp.task(
"ci-test",
gulp.series(gulp.parallel("externaltest", "unittestcli"), "typestest")
);
gulp.task("ci-test", gulp.parallel("externaltest", "unittestcli"));