From ddc054f8421ec54dd779b8754d8655defb0b92f8 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Wed, 3 Aug 2022 14:42:45 +0200 Subject: [PATCH] Add latest pipeline to drone-ci --- .drone.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index bdcaae0..341a6e4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,5 +1,6 @@ +--- kind: pipeline -name: default +name: node-16-lts steps: - name: test @@ -7,3 +8,14 @@ steps: commands: - npm install - npm test + +--- +kind: pipeline +name: node-latest + +steps: +- name: test + image: node + commands: + - npm install + - npm test \ No newline at end of file