From 900e92553148bc338005c8c20c6f278cdf4f9b72 Mon Sep 17 00:00:00 2001 From: Siklos Date: Mon, 8 Aug 2022 18:15:56 +0200 Subject: [PATCH] Add pnpm to drone.yml --- .drone.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0a843af..759892f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,9 +6,10 @@ steps: - name: test image: node:16 commands: + - curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7 - node ./test-server/node-http.js & - - npm install - - npm run test:nowatch + - pnpm install + - pnpm run test:nowatch --- kind: pipeline @@ -18,6 +19,7 @@ steps: - name: test image: node commands: + - curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7 - node ./test-server/node-http.js & - - npm install - - npm run test:nowatch \ No newline at end of file + - pnpm install + - pnpm run test:nowatch \ No newline at end of file