Skip to content
Snippets Groups Projects
Select Git revision
  • d428e25d0153ff254bf06fc5c6f80781cc31e20e
  • master default protected
  • dreal-gestionnaires
  • preprod protected
  • prod protected
  • contradictoire
  • rename_men
  • per-h-archive
  • 1708-feat-instruction-ajoute-la-possibilite-de-voir-les-prochaines-etapes
  • prs-exploitant
  • a11y-ci
  • notifications
  • chore-image-snap
  • v0.125.0
  • v0.124.0
  • v0.123.0
  • v0.122.0
  • v0.121.0
  • v0.120.0
  • v0.119.0
  • v0.118.0
  • v0.117.0
  • v0.116.0
  • v0.115.0
  • v0.114.0
  • v0.113.0
  • v0.112.0
  • v0.111.0
  • v0.110.0
  • v0.109.0
  • v0.108.0
  • v0.107.0
  • v0.106.0
33 results

ui.yml

Blame
  • ui.yml 861 B
    ui/lint:
      extends: .prepare-node-run
      stage: test
      script: make lint/ui
    ui/test:
      extends: .prepare-node-run
      stage: test
      script: make test/ui
    ui/test-storybook:
      extends: .prepare-node-run
      stage: test
      retry: 2
      services:
        - name: caminofr/camino-docs:${CI_COMMIT_SHA}
          alias: storybook
      script:
        - ./.gitlab/wait-for-it.sh -h localhost -p 80 -t 60 -- echo 'done'
        - make storybook/test
    ui/build-and-push-image:
      stage: build
      needs: ['ui/test', 'ui/lint', 'ui/test-storybook']
      extends:
        - .rule-build-and-push
        - .prepare-docker-push
      image:
        name: gcr.io/kaniko-project/executor:debug
        entrypoint: [""]
      script: /kaniko/executor --context "$CI_PROJECT_DIR" --build-arg GIT_SHA=${CI_COMMIT_SHA} --dockerfile "$CI_PROJECT_DIR/Dockerfile.ui" --destination "caminofr/camino-ui:${CI_COMMIT_SHA}"  ${KANIKO_POST_PARAM}