diff --git a/.drone.yml b/.drone.yml index d397271..8b0aa7d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,21 +3,21 @@ type: docker name: default steps: - - name: init - image: node:16-alpine - commands: - - "npm install" - - name: start - image: node:16-alpine - commands: - # - "npm run build" - - "npm test -- --watchAll=false" - - "npm test -- --watchAll=false" + # - name: init + # image: node:16-alpine + # commands: + # - "npm install" + # - name: start + # image: node:16-alpine + # commands: + # # - "npm run build" + # - "npm test -- --watchAll=false" + # - "npm test -- --watchAll=false" - name: notify image: alpine:3 environment: GCHAT_WH: from_secret: GCHAT_WH commands: - - "sudo apt install curl" + - "apt install curl" - "curl -X 'POST' '$GCHAT_WH' -H 'Content-type:application/json' -d '{'text':'Drone says hello'}' "