Skip to content

Commit 0162ffc

Browse files
committed
chore: rename ci script to test:ci
1 parent 4aed294 commit 0162ffc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
- name: Install
2525
run: npm ci
2626
- name: CI
27-
run: npm run ci
27+
run: npm run test:ci

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
npx npm-check-updates --enginesNode
2-
npm run ci
2+
npm run test:ci

.husky/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
npm run ci
1+
npm run test:ci

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "commonjs",
88
"scripts": {
99
"bundle": "rimraf dist && ncc build src/pre.js -o dist/pre && ncc build src/post.js -o dist/post && ncc build src/noop.js -o dist/noop",
10-
"ci": "npm run lint && npm run format && npm test",
10+
"test:ci": "npm run lint && npm run format && npm test",
1111
"lint": "eslint .",
1212
"format": "prettier --check .",
1313
"format:write": "prettier --write .",

0 commit comments

Comments
 (0)