mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-19 06:41:20 +00:00
5c198049f7
Previously, @danslo reported that he tried to use `custom_versions` without setting the kind. This isn't the correct behavior. I've added a validator to alert him of this.
4 lines
114 B
TypeScript
4 lines
114 B
TypeScript
import { Kind } from "./kinds";
|
|
|
|
export type KindValidator = (kind: Kind, custom_versions?: string[]) => boolean;
|