kind: pipeline type: docker name: default workspace: path: /drone/grow steps: - name: Code Style image: node:latest commands: - yarn install - yarn prettier - name: Code Lint image: node:latest commands: - yarn lint - name: Build image: node:latest commands: - yarn build trigger: branch: - main event: - push