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 d8a73a5 commit f327936Copy full SHA for f327936
.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
@@ -20,9 +20,10 @@
20
"git-hook": "yarn -s lint",
21
"compile": "tsc",
22
"prepare": "husky && yarn compile",
23
- "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'",
24
"semantic-release": "semantic-release",
25
- "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
26
+ "lint:ci": "yarn lint"
27
},
28
"engines": {
29
"node": ">=18.0.0"
0 commit comments