woodpecker/.woodpecker/web.yml
qwerty287 da7d13ad4e
Use native directory and run with Node 18 (#1337)
- replace `cd` with native key `directory` (#1329)
- Update Node images to 18
2022-10-25 14:51:29 +02:00

67 lines
1.2 KiB
YAML

variables:
- &node_image 'node:18-alpine'
- &when_path
# related config files
- ".woodpecker/web.yml"
# web source code
- "web/**"
pipeline:
deps:
image: *node_image
directory: web/
commands:
- corepack enable
- pnpm install --frozen-lockfile
when:
path: *when_path
lint:
group: test
image: *node_image
directory: web/
commands:
- corepack enable
- pnpm lint
when:
path: *when_path
formatcheck:
group: test
image: *node_image
directory: web/
commands:
- corepack enable
- pnpm formatcheck
when:
path: *when_path
typecheck:
group: test
image: *node_image
directory: web/
commands:
- corepack enable
- pnpm 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
directory: web/
commands:
- corepack enable
- pnpm test
when:
path: *when_path