From da7f5060e8d4dbb65e0cd05ef484baf0ea034a17 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Tue, 16 Aug 2022 17:02:40 +0200 Subject: [PATCH] drone-ci: Remove pnpm --- .drone.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index e3b1f91..b0d7165 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,11 +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 & - - pnpm install - - pnpm run test:nowatch - - pnpm run build + - npm ci + - npm run test:nowatch + - npm run build --- kind: pipeline @@ -20,8 +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 & - - pnpm install - - pnpm run test:nowatch - - pnpm run build \ No newline at end of file + - npm ci + - npm run test:nowatch + - npm run build \ No newline at end of file