FoundKey/.woodpecker/lint-foundkey-js.yml
Francis Dinh bd11b9d818
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 
but this didn't end up being the root cause, so it may actually be
better to split these tasks again.
2022-09-07 14:02:45 -04:00

22 lines
395 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 foundkey-js run lint