You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
642 B
26 lines
642 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
image: node:latest
|
|
commands:
|
|
- cd src
|
|
- npm i
|
|
- npm test
|
|
|
|
- name: sonar-analyses
|
|
image: hub.codefirst.iut.uca.fr/camille.petitalot/drone-sonarplugin-reactnative:latest
|
|
commands:
|
|
- cd src
|
|
- npm install
|
|
- sonar-scanner -Dsonar.projectKey=Learnihon -Dsonar.sources=. -Dsonar.host.url=$${PLUGIN_SONAR_HOST}
|
|
-Dsonar.login=$${PLUGIN_SONAR_TOKEN}
|
|
secrets: [ SONAR_TOKEN ]
|
|
settings:
|
|
sonar_host: https://codefirst.iut.uca.fr/sonar/
|
|
sonar_token:
|
|
from_secret: SONAR_TOKEN
|
|
depends_on: [ test ] |