# Generated by chant migrate from input.yml

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

build:
  image: node:20
  cache:
    key:
      files:
        - package-lock.json
    paths:
      - .npm/
  script:
    - npm ci
    - npm test
  stage: build
