Skip to content
Snippets Groups Projects
Select Git revision
  • 15-api-for-annotations-on-video
  • annotation-on-video default protected
  • demo_ci
  • 3-upstream-01022023
  • master
  • gh3538-captions
  • 16-adapt-for-images-annot
  • 15-annotations-on-videos
  • video_for_annotations
  • wip-1-annotations-on-videos
  • 9-videoviewer-tests
  • 9_wip_videotests
  • 6-fix-tests-and-ci
  • _fix_ci
  • wip-webpack-from-git
15 results

.gitlab-ci.yml

Blame
  • Loïs Poujade's avatar
    Loïs Poujade authored
    - build before integration tests
    - also logs tests results in job output
    - remove online google fonts to speed up tests
    - run test serially to avoid timeouts (cf
      https://github.com/smooth-code/jest-puppeteer#running-puppeteer-in-ci-environments)
    cff6b420
    History
    This GitLab CI configuration is valid. Learn more
    .gitlab-ci.yml 238 B
    
    upstream_tests:
      image: ghcr.io/puppeteer/puppeteer:latest
      before_script:
        - npm ci
        - npm run build
      script:
        - npm run test:ci
      artifacts:
        when: always
        paths:
          - junit.xml
        reports:
          junit: junit.xml