25 lines
293 B
YAML
25 lines
293 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
workspace:
|
|
path: /drone/src
|
|
|
|
steps:
|
|
- name: Lint
|
|
image: node:latest
|
|
commands:
|
|
- yarn install
|
|
- yarn lint .
|
|
- name: Prettier
|
|
image: node:latest
|
|
commands:
|
|
- yarn install
|
|
- yarn prettier
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|