Skip to content
Snippets Groups Projects
Select Git revision
  • c4c35b651ebf493fec7e1e3eedfa634758efbba5
  • main default protected
2 results

checksum.json

Blame
  • .gitlab-ci.yml 401 B
    image: node:latest
    
    cache:
      paths:
        - node_modules/
        - docs/
    
    stages:
      - test
      - publish
    
    test:
      stage: test
      before_script:
        - npm install
        - npm install -g jest
      script:
        - jest
      artifacts:
        paths:
          - docs/test-report.html
          - docs/coverage/lcov.info
    
    publish:
      only:
        refs:
          - tags
      stage: publish
      script:
        - npm install
        - npm publish --verbose