Revert "ci: combine install and lint/build tasks"
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
This reverts commit 759d031a5f
.
This was originally to solve some issues with builds during the
workspace refactor in #86
but this didn't end up being the root cause, so it may actually be
better to split these tasks again.
This commit is contained in:
parent
f21e1afaa4
commit
bd11b9d818
4 changed files with 28 additions and 4 deletions
|
@ -6,11 +6,17 @@ clone:
|
|||
recursive: true
|
||||
|
||||
pipeline:
|
||||
build:
|
||||
install:
|
||||
when:
|
||||
event:
|
||||
- pull_request
|
||||
image: node:18.6.0
|
||||
commands:
|
||||
- yarn install
|
||||
build:
|
||||
when:
|
||||
event:
|
||||
- pull_request
|
||||
image: node:18.6.0
|
||||
commands:
|
||||
- yarn build
|
||||
|
|
|
@ -6,11 +6,17 @@ clone:
|
|||
recursive: true
|
||||
|
||||
pipeline:
|
||||
lint:
|
||||
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
|
||||
|
|
|
@ -6,11 +6,17 @@ clone:
|
|||
recursive: true
|
||||
|
||||
pipeline:
|
||||
lint:
|
||||
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 client run lint
|
||||
|
|
|
@ -6,11 +6,17 @@ clone:
|
|||
recursive: true
|
||||
|
||||
pipeline:
|
||||
lint:
|
||||
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 foundkey-js run lint
|
||||
|
|
Loading…
Reference in a new issue