forked from FoundKeyGang/FoundKey
Francis Dinh
bd11b9d818
This reverts commit 759d031a5f
.
This was originally to solve some issues with builds during the
workspace refactor in FoundKeyGang/FoundKey#86
but this didn't end up being the root cause, so it may actually be
better to split these tasks again.
22 lines
391 B
YAML
22 lines
391 B
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
depth: 1 # CI does not need commit history
|
|
recursive: true
|
|
|
|
pipeline:
|
|
install:
|
|
when:
|
|
event:
|
|
- pull_request
|
|
image: node:18.6.0
|
|
commands:
|
|
- yarn install
|
|
lint:
|
|
when:
|
|
event:
|
|
- pull_request
|
|
image: node:18.6.0
|
|
commands:
|
|
- yarn workspace backend run lint
|