fix: failing pipelines (#2)
Co-authored-by: Richard Attermeyer <richard.attermeyer@opitz-consulting.com> Reviewed-on: https://git.192.168.1.151.nip.io:8543/fjadmin/ci-demo-2/pulls/2pull/1/head
parent
6ff35cd8ab
commit
a8bd947530
|
|
@ -12,17 +12,28 @@ steps:
|
||||||
"prepare":
|
"prepare":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
commands:
|
commands:
|
||||||
- cd frontend
|
|
||||||
- pnpm install
|
- pnpm install
|
||||||
|
directory: frontend
|
||||||
"lint:style":
|
"lint:style":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
commands:
|
commands:
|
||||||
- cd frontend
|
|
||||||
- pnpm run prettier
|
- pnpm run prettier
|
||||||
|
directory: frontend
|
||||||
"lint:analyze":
|
"lint:analyze":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
commands:
|
commands:
|
||||||
- cd frontend
|
|
||||||
- pnpm run lint
|
- 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:
|
depends_on:
|
||||||
- "lint_general"
|
- "lint_general"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue