/** * @file Test Utilities - NODE_VERSIONS * @module tests/utils/NODE_VERSIONS */ import type { SemanticVersion } from '@flex-development/pkg-types' /** * Node.js version list. * * @const {SemanticVersion[]} NODE_VERSIONS */ const NODE_VERSIONS: SemanticVersion[] = [ '18.20.4', '19.9.0', '20.17.0', '21.7.3', '22.7.0', '22.8.0' ] export default NODE_VERSIONS