diff --git a/.github/workflows/storybook-test.yml b/.github/workflows/storybook-test.yml index da7558082..bed1c279f 100644 --- a/.github/workflows/storybook-test.yml +++ b/.github/workflows/storybook-test.yml @@ -19,7 +19,7 @@ env: jobs: storybook-test: - timeout-minutes: 5 + timeout-minutes: 10 runs-on: ubuntu-latest services: postgres: diff --git a/Makefile b/Makefile index 69033baad..6e998856d 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ DOCKER_BUILD_TXT := .docker_build PHONY := all all: $(DOCKER_BUILD_TXT) $(MAKE) local-npm-i + $(MAKE) local-prisma-generate docker compose up $(DOCKER_BUILD_TXT): $(DOCKER_FILES) @@ -20,6 +21,10 @@ local-npm-i: cd frontend && npm i cd backend && npm i +PHONY += local-prisma-generate +local-prisma-generate: + cd backend && npx prisma generate + PHONY += down down: docker compose down