mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-19 06:41:20 +00:00
feat(supported-version): add optional services output for each matrix entry (#206)
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
export interface ServiceConfig {
|
||||
image: string;
|
||||
env?: Record<string, string>;
|
||||
ports?: string[];
|
||||
options?: string;
|
||||
}
|
||||
|
||||
export interface Services {
|
||||
[serviceName: string]: ServiceConfig;
|
||||
}
|
||||
|
||||
export interface PackageMatrixVersion {
|
||||
magento: string,
|
||||
php: string | number,
|
||||
@@ -12,7 +23,8 @@ export interface PackageMatrixVersion {
|
||||
nginx: string,
|
||||
os: string,
|
||||
release: string,
|
||||
eol: string
|
||||
eol: string,
|
||||
services?: Services
|
||||
}
|
||||
|
||||
export interface GithubActionsMatrix {
|
||||
|
||||
Reference in New Issue
Block a user