1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00

Move linting 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 10:09:39 +01:00
parent 26fcd261fb
commit 2f70369d02
2 changed files with 38 additions and 5 deletions

View file

@ -2439,9 +2439,5 @@ gulp.task("externaltest", function (done) {
gulp.task(
"ci-test",
gulp.series(
gulp.parallel("lint", "externaltest", "unittestcli"),
"lint-chromium",
"typestest"
)
gulp.series(gulp.parallel("externaltest", "unittestcli"), "typestest")
);