We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec284b commit 977228cCopy full SHA for 977228c
.github/workflows/code-style.yml renamed to .github/workflows/code-quality.yml
@@ -1,4 +1,4 @@
1
-name: 'Code style'
+name: 'Code quality'
2
3
on:
4
pull_request:
package.json
@@ -22,9 +22,10 @@
22
"ncu-all": "ncu -i",
23
"compile": "tsc",
24
"prepare": "husky && yarn build",
25
- "sanity": "yarn lint && yarn test --coverage && tsc --noEmit && yarn outdated && echo 'success'",
+ "sanity": "yarn lint:ci && yarn test --coverage && tsc --noEmit && yarn outdated && echo 'success'",
26
"semantic-release": "semantic-release",
27
- "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
28
+ "lint:ci": "yarn lint"
29
},
30
"engines": {
31
"node": ">=18.0.0"
0 commit comments