build: step dependency updateds
ci/woodpecker/push/lint_general Pipeline was successful
Details
ci/woodpecker/push/lint_general Pipeline was successful
Details
parent
4f6db55742
commit
476256856a
|
|
@ -25,24 +25,28 @@ steps:
|
||||||
|
|
||||||
"lint:style":
|
"lint:style":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
|
depends_on: ["prepare:frontend"]
|
||||||
commands:
|
commands:
|
||||||
- pnpm run prettier
|
- pnpm run prettier
|
||||||
directory: frontend
|
directory: frontend
|
||||||
|
|
||||||
"lint:analyze":
|
"lint:analyze":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
|
depends_on: ["prepare:frontend"]
|
||||||
commands:
|
commands:
|
||||||
- pnpm run lint
|
- pnpm run lint
|
||||||
directory: frontend
|
directory: frontend
|
||||||
|
|
||||||
"build:frontend":
|
"build:frontend":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
|
depends_on: ["prepare:frontend"]
|
||||||
commands:
|
commands:
|
||||||
- pnpm run build
|
- pnpm run build
|
||||||
directory: frontend
|
directory: frontend
|
||||||
|
|
||||||
"build:tsc":
|
"build:tsc":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
|
depends_on: ["prepare:frontend"]
|
||||||
commands:
|
commands:
|
||||||
- pnpm add typescript
|
- pnpm add typescript
|
||||||
- pnpm run typecheck
|
- pnpm run typecheck
|
||||||
|
|
@ -50,6 +54,7 @@ steps:
|
||||||
|
|
||||||
"analyze:sbom":
|
"analyze:sbom":
|
||||||
image: *frontend_image
|
image: *frontend_image
|
||||||
|
depends_on: ["prepare:frontend"]
|
||||||
commands:
|
commands:
|
||||||
- rm -rf node_modules
|
- rm -rf node_modules
|
||||||
- npm install
|
- npm install
|
||||||
|
|
@ -58,6 +63,7 @@ steps:
|
||||||
|
|
||||||
"deploy:frontend":
|
"deploy:frontend":
|
||||||
image: alpine:latest
|
image: alpine:latest
|
||||||
|
depends_on: ["build:frontend"]
|
||||||
commands:
|
commands:
|
||||||
- echo "deploy frontend"
|
- echo "deploy frontend"
|
||||||
- env
|
- env
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue