fix(ci): run eslint and typecheck without symlinks (#1564)

This commit is contained in:
Chaim Lev-Ari
2025-12-22 17:38:42 +02:00
committed by GitHub
parent aef27f475d
commit 433b5bc974
2 changed files with 4 additions and 1 deletions

2
.gitignore vendored
View File

@@ -18,3 +18,5 @@ api/docs
.env
go.work.sum
.vitest

View File

@@ -27,7 +27,8 @@
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -o ./dist/storybook",
"analyze-webpack": "webpack --config ./webpack/webpack.analyze.js",
"prepare": "cd ../.. && husky install package/server-ce/.husky && husky install .husky"
"prepare": "cd ../.. && husky install package/server-ce/.husky && husky install .husky",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">= 16"