This repository has been archived on 2023-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
auth/.drone.yml
mifi 31aa388c69
Some checks failed
continuous-integration/drone/push Build is failing
Stage it all
2023-05-02 11:59:45 -04:00

34 lines
401 B
YAML

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