chore: testing frontend before release

This commit is contained in:
Miodec 2024-02-08 13:51:02 +01:00
parent aa011b6b99
commit 46d17d4139
3 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@
"hooks": {
"before:init": [
"npm run lint-fe",
"npm run test-fe",
"cd frontend && npx gulp build-production"
],
"before:release": [

View file

@ -2,7 +2,7 @@
"hooks": {
"before:init": [
"npm run lint",
"npm run test-be",
"npm run test",
"cd frontend && npx gulp build-production"
],
"before:release": [

View file

@ -11,6 +11,7 @@
"install-all": "sh ./bin/install.sh",
"install-windows": ".\\bin\\install.cmd",
"docker": "cd backend && docker compose up",
"test": "npm run test-be && npm run test-fe",
"test-be": "cd backend && npm run test",
"test-fe": "cd frontend && npm run test",
"dev": "concurrently --kill-others \"npm run dev-fe\" \"npm run dev-be\"",