mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 05:41:12 +00:00
62 lines
1.1 KiB
YAML
62 lines
1.1 KiB
YAML
variables:
|
|
- &node_image 'node:16-alpine'
|
|
- &when_path
|
|
# related config files
|
|
- ".woodpecker/web.yml"
|
|
# web source code
|
|
- "web/**"
|
|
|
|
pipeline:
|
|
deps:
|
|
image: *node_image
|
|
commands:
|
|
- cd web/
|
|
- yarn install --frozen-lockfile
|
|
when:
|
|
path: *when_path
|
|
|
|
lint:
|
|
group: test
|
|
image: *node_image
|
|
commands:
|
|
- cd web/
|
|
- yarn lint
|
|
when:
|
|
path: *when_path
|
|
|
|
formatcheck:
|
|
group: test
|
|
image: *node_image
|
|
commands:
|
|
- cd web/
|
|
- yarn formatcheck
|
|
when:
|
|
path: *when_path
|
|
|
|
typecheck:
|
|
group: test
|
|
image: *node_image
|
|
commands:
|
|
- cd web/
|
|
- yarn typecheck
|
|
when:
|
|
path: *when_path
|
|
|
|
securitycheck:
|
|
group: test
|
|
image: aquasec/trivy:latest
|
|
commands:
|
|
- trivy fs --exit-code 0 --skip-dirs node_modules/ --severity UNKNOWN,LOW web/
|
|
- trivy fs --exit-code 1 --skip-dirs node_modules/ --severity MEDIUM,HIGH,CRITICAL web/
|
|
when:
|
|
path: *when_path
|
|
|
|
test:
|
|
group: test
|
|
image: *node_image
|
|
commands:
|
|
- cd web/
|
|
- yarn test
|
|
when:
|
|
path: *when_path
|
|
|