mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-04 06:38:43 +00:00
d2aad473d7
This reverts commit06f869beb3
. This reverts commitdbb5b4baa2
.
45 lines
689 B
YAML
45 lines
689 B
YAML
pipeline:
|
|
deps:
|
|
image: node:16-alpine
|
|
commands:
|
|
- cd web/
|
|
- yarn install --frozen-lockfile
|
|
when:
|
|
path: "web/**"
|
|
|
|
lint:
|
|
group: test
|
|
image: node:16-alpine
|
|
commands:
|
|
- cd web/
|
|
- yarn lint
|
|
when:
|
|
path: "web/**"
|
|
|
|
formatcheck:
|
|
group: test
|
|
image: node:16-alpine
|
|
commands:
|
|
- cd web/
|
|
- yarn formatcheck
|
|
when:
|
|
path: "web/**"
|
|
|
|
typecheck:
|
|
group: test
|
|
image: node:16-alpine
|
|
commands:
|
|
- cd web/
|
|
- yarn typecheck
|
|
when:
|
|
path: "web/**"
|
|
|
|
test:
|
|
group: test
|
|
image: node:16-alpine
|
|
commands:
|
|
- cd web/
|
|
- yarn test
|
|
when:
|
|
path: "web/**"
|
|
|