mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-14 21:31:50 +00:00
fix: only lint/format src; update base packages; use Node 18 in gh workflow
This commit is contained in:
parent
baee6d2d45
commit
111295361e
3 changed files with 1224 additions and 462 deletions
2
.github/workflows/codequality.yml
vendored
2
.github/workflows/codequality.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [16.6]
|
||||
node-version: [18.16]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
|
1678
package-lock.json
generated
1678
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -4,9 +4,9 @@
|
|||
"description": "",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"format": "prettier --write './**/*.{css,html,js,json,ts,tsx}'",
|
||||
"lint": "tslint \"./{backend,dashboard}/{,!(node_modules)/**/}/*.ts\"",
|
||||
"codestyle-check": "prettier --check './**/*.{css,html,js,json,ts,tsx}'"
|
||||
"format": "prettier --write './backend/src/**/*.{css,html,js,json,ts,tsx}' './dashboard/src/**/*.{css,html,js,json,ts,tsx}'",
|
||||
"lint": "tslint './backend/src/**/*.{js,ts,tsx}' './dashboard/src/**/*.{js,ts,tsx}'",
|
||||
"codestyle-check": "prettier --check './backend/src/**/*.{css,html,js,json,ts,tsx}' './dashboard/src/**/*.{css,html,js,json,ts,tsx}'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"husky": "^3.0.9",
|
||||
|
|
Loading…
Add table
Reference in a new issue