Merge pull request #17268 from Snuffleupagus/ci-test-refactor

Clean-up the CI workflow a bit
This commit is contained in:
Tim van der Meij 2023-11-12 14:04:02 +01:00 committed by GitHub
commit 7884119975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -30,5 +30,8 @@ jobs:
- name: Install other dependencies
run: npm install
- name: Run tests
run: gulp ci-test
- name: Run external tests
run: gulp externaltest
- name: Run CLI unit tests
run: gulp unittestcli

View File

@ -2436,5 +2436,3 @@ gulp.task("externaltest", function (done) {
});
done();
});
gulp.task("ci-test", gulp.parallel("externaltest", "unittestcli"));