# Generated by chant migrate from input.yml

stages:
  - test
workflow:
  rules:
    - if: '$CI_PIPELINE_SOURCE == "push"'

test:
  image: node:22
  script:
    - npm test
    - pip install codecov-cli
    - codecovcli upload-process --file ./coverage.xml --token $CODECOV_TOKEN
  stage: test
