drone-ci: Remove pnpm
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Eric NGUYEN 2022-08-16 17:02:40 +02:00
parent a36d5d79d4
commit da7f5060e8

View file

@ -6,11 +6,10 @@ steps:
- name: test - name: test
image: node:16 image: node:16
commands: commands:
- curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7
- node ./test-server/node-http.js & - node ./test-server/node-http.js &
- pnpm install - npm ci
- pnpm run test:nowatch - npm run test:nowatch
- pnpm run build - npm run build
--- ---
kind: pipeline kind: pipeline
@ -20,8 +19,7 @@ steps:
- name: test - name: test
image: node image: node
commands: commands:
- curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7
- node ./test-server/node-http.js & - node ./test-server/node-http.js &
- pnpm install - npm ci
- pnpm run test:nowatch - npm run test:nowatch
- pnpm run build - npm run build