# Generated by chant migrate from input.yml

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

test:
  image: ubuntu:24.04
  parallel:
    matrix:
      - OS: '[ubuntu, debian]'
        NODE:
          - 18
          - 20
          - 22
  script:
    - echo "Testing on $os with Node $node"
  stage: test
