Skip to content

Commit 46f6351

Browse files
Merge pull request #13939 from Snuffleupagus/gulpfile-ci-test
Remove the `npm test`-command
2 parents ada283c + d67d484 commit 46f6351

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
run: npm install
2222

2323
- name: Run tests
24-
run: npm test
24+
run: gulp ci-test

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2348,7 +2348,7 @@ gulp.task("externaltest", function (done) {
23482348
});
23492349

23502350
gulp.task(
2351-
"npm-test",
2351+
"ci-test",
23522352
gulp.series(
23532353
gulp.parallel("lint", "externaltest", "unittestcli"),
23542354
"lint-chromium",

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@
6464
"yargs": "^17.1.1"
6565
},
6666
"scripts": {
67-
"postinstall": "cross-env PUPPETEER_PRODUCT=firefox node node_modules/puppeteer/install.js",
68-
"test": "gulp npm-test"
67+
"postinstall": "cross-env PUPPETEER_PRODUCT=firefox node node_modules/puppeteer/install.js"
6968
},
7069
"repository": {
7170
"type": "git",

0 commit comments

Comments
 (0)