diff --git a/.woodpecker/.frontend.yml b/.woodpecker/.frontend.yml index b4cfc18..f884776 100644 --- a/.woodpecker/.frontend.yml +++ b/.woodpecker/.frontend.yml @@ -12,17 +12,28 @@ steps: "prepare": image: *frontend_image commands: - - cd frontend - pnpm install + directory: frontend "lint:style": image: *frontend_image commands: - - cd frontend - pnpm run prettier + directory: frontend "lint:analyze": image: *frontend_image commands: - - cd frontend - pnpm run lint + directory: frontend + "build:frontend": + image: *frontend_image + commands: + - pnpm run build + directory: frontend + "build:tsc": + image: *frontend_image + commands: + - pnpm add typescript + - pnpm run typecheck + directory: frontend depends_on: - "lint_general"