forked from FoundKeyGang/FoundKey
Revert "ci: combine install and lint/build tasks"
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.
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