We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc5eb5d commit a805cbdCopy full SHA for a805cbd
2 files changed
.github/workflows/Build.yml
@@ -22,6 +22,6 @@ jobs:
22
- name: Check project can build successfully
23
run: npm run build
24
- name: Check git is still clean after building
25
- run: is-git-status-clean
+ run: npm run has-no-changes
26
- name: Check project linting
27
run: npm run lint:check
package.json
@@ -13,7 +13,8 @@
13
"lint:check": "stylelint \"**/*.scss\" --max-warnings=0 --ignore-path .gitignore",
14
"lint:fix": "stylelint \"**/*.scss\" --max-warnings=0 --ignore-path .gitignore --fix",
15
"test": "cypress run --headless",
16
- "test:ui": "cypress open"
+ "test:ui": "cypress open",
17
+ "has-no-changes": "is-git-status-clean"
18
},
19
"repository": {
20
"type": "git",
0 commit comments