Workspaces refactor #86

Merged
norm merged 189 commits from refactor/workspaces into main 2022-08-28 14:46:45 +00:00
3 changed files with 24 additions and 2 deletions
Showing only changes of commit d8fd6d55ed - Show all commits

View file

@ -19,4 +19,4 @@ pipeline:
- pull_request
image: node:18.6.0
commands:
- yarn --cwd ./packages/backend lint
- yarn workspaces backend run lint

View file

@ -19,4 +19,4 @@ pipeline:
- pull_request
image: node:18.6.0
commands:
- yarn --cwd ./packages/client lint
- yarn workspaces client run lint

View file

@ -0,0 +1,22 @@
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 workspaces foundkey-js run lint