# Use Node.js configuration.
language: node_js

# Both latest Node.js and latest LTS.
node_js:
  - lts/*
  - node

# All of the operating systems!
# Note: Windows support is very iffy.
os:
  - linux
  - osx
  - windows

# Don't build arbitrary branches, just pull requests + main + semver tags.
branches:
  only:
    - main
    - "/^v\\d+\\.\\d+\\.\\d+$/"
