mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-11 04:40:00 +08:00
Change npm format to format-check and add format command
This commit is contained in:
parent
2bd641ee75
commit
618a7ec0f8
2
.github/main.workflow
vendored
2
.github/main.workflow
vendored
@ -23,7 +23,7 @@ action "Compile" {
|
|||||||
action "Format" {
|
action "Format" {
|
||||||
needs = "Dependencies"
|
needs = "Dependencies"
|
||||||
uses = "actions/npm@v2.0.0"
|
uses = "actions/npm@v2.0.0"
|
||||||
args = "run format"
|
args = "run format-check"
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Test" {
|
action "Test" {
|
||||||
|
@ -4,7 +4,8 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"bootstrap": "lerna bootstrap",
|
"bootstrap": "lerna bootstrap",
|
||||||
"build": "lerna run tsc",
|
"build": "lerna run tsc",
|
||||||
"format": "prettier --check packages/*/src/**/*.ts",
|
"format": "prettier --write packages/*/src/**/*.ts",
|
||||||
|
"format-check": "prettier --check packages/*/src/**/*.ts",
|
||||||
"new-package": "scripts/create-package",
|
"new-package": "scripts/create-package",
|
||||||
"test": "jest"
|
"test": "jest"
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user