Johann150
c0364f236c
Since I don't use them and they never really worked correctly anyway, there is no real point in keeping them around. Also, removing them allows to shed quite a bit of "weight" in (dev)dependencies.
20 lines
340 B
YAML
20 lines
340 B
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
depth: 1 # CI does not need commit history
|
|
recursive: true
|
|
|
|
depends_on:
|
|
- build
|
|
|
|
pipeline:
|
|
build:
|
|
when:
|
|
branch: main
|
|
event: push
|
|
image: node:18.6.0
|
|
commands:
|
|
- yarn install
|
|
- git diff --exit-code yarn.lock
|
|
- yarn build
|