unreviewed_code/.drone.yml
first_admin 7273e2a16e
Some checks reported errors
continuous-integration/drone Build encountered an error
Update .drone.yml
2024-09-08 14:22:51 +00:00

26 lines
421 B
YAML

kind: pipeline
type: docker
name: default
image: node:14-alpine
steps:
- name: build
# image: node:14-alpine
commands:
- echo "Building the application..."
- name: test
# image: python:3.9
depends_on:
- build
commands:
- echo "Running tests..."
- name: deploy
# image: ubuntu:20.04
depends_on:
- test
commands:
- echo "Deploying the application..."