diff --git a/.drone.yml b/.drone.yml index e47544c..141c0e8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -14,7 +14,12 @@ steps: sonar_host: https://codefirst.iut.uca.fr/sonar/ sonar_token: from_secret: SONAR_TOKEN - - name: Test and coverage - image: hub.codefirst.iut.uca.fr/camille.petitalot/drone-sonarplugin-reactnative:latest + - name: install dependencies + image: node:16-alpine + commands: + - npm install + + - name: run tests + image: node:16-alpine commands: - - npm jest \ No newline at end of file + - npm test \ No newline at end of file