Update .drone.yml
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
first_admin 2024-09-08 14:24:46 +00:00
parent 7273e2a16e
commit a5704cb8f2

View File

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