unreviewed_code/.drone.yml

26 lines
421 B
YAML
Raw Normal View History

2024-09-08 14:20:42 +00:00
kind: pipeline
type: docker
name: default
2024-09-08 14:22:51 +00:00
image: node:14-alpine
2024-09-08 14:20:42 +00:00
steps:
- name: build
2024-09-08 14:22:16 +00:00
# image: node:14-alpine
2024-09-08 14:20:42 +00:00
commands:
- echo "Building the application..."
- name: test
2024-09-08 14:22:16 +00:00
# image: python:3.9
2024-09-08 14:20:42 +00:00
depends_on:
- build
commands:
- echo "Running tests..."
- name: deploy
2024-09-08 14:22:16 +00:00
# image: ubuntu:20.04
2024-09-08 14:20:42 +00:00
depends_on:
- test
commands:
- echo "Deploying the application..."