mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-10-31 22:38:49 +00:00
66 lines
1.2 KiB
YAML
66 lines
1.2 KiB
YAML
when:
|
|
- event: pull_request
|
|
- event: push
|
|
branch:
|
|
- release/*
|
|
- renovate/*
|
|
|
|
variables:
|
|
- &node_image 'docker.io/node:22-alpine'
|
|
- &when
|
|
path:
|
|
# related config files
|
|
- '.woodpecker/web.yaml'
|
|
# web source code
|
|
- 'web/**'
|
|
# api source code
|
|
- 'server/api/**'
|
|
|
|
steps:
|
|
install-dependencies:
|
|
image: *node_image
|
|
directory: web/
|
|
commands:
|
|
- corepack enable
|
|
- pnpm install --frozen-lockfile
|
|
when: *when
|
|
|
|
lint:
|
|
depends_on:
|
|
- install-dependencies
|
|
image: *node_image
|
|
directory: web/
|
|
commands:
|
|
- corepack enable
|
|
- pnpm lint
|
|
when: *when
|
|
|
|
formatcheck:
|
|
depends_on:
|
|
- install-dependencies
|
|
image: *node_image
|
|
directory: web/
|
|
commands:
|
|
- corepack enable
|
|
- pnpm format:check
|
|
when: *when
|
|
|
|
typecheck:
|
|
depends_on:
|
|
- install-dependencies
|
|
image: *node_image
|
|
directory: web/
|
|
commands:
|
|
- corepack enable
|
|
- pnpm typecheck
|
|
when: *when
|
|
|
|
test:
|
|
depends_on:
|
|
- install-dependencies
|
|
image: *node_image
|
|
directory: web/
|
|
commands:
|
|
- corepack enable
|
|
- pnpm test
|
|
when: *when
|