mirror of
https://github.com/graycoreio/github-actions-magento2.git
synced 2026-06-19 06:41:20 +00:00
f7f0504691
* refactor: allow version matrixes by projects * feat: add initial version-matrix for mage-os * feat: add project as optional input to action * docs: document new input * refactor: tighten types a bit * chore: apply change requests from code review
24 lines
699 B
TypeScript
24 lines
699 B
TypeScript
import * as core from '@actions/core';
|
|
import { validateKind } from './kind/validate-kinds';
|
|
import { getMatrixForKind } from './matrix/get-matrix-for-kind';
|
|
import { validateProject } from "./project/validate-projects";
|
|
|
|
|
|
export async function run(): Promise<void> {
|
|
try {
|
|
const kind = core.getInput("kind");
|
|
const customVersions = core.getInput("custom_versions");
|
|
const project = core.getInput("project");
|
|
|
|
validateProject(<any>project)
|
|
|
|
validateKind(<any>kind, customVersions ? customVersions.split(',') : undefined);
|
|
|
|
core.setOutput('matrix', getMatrixForKind(kind, project, customVersions));
|
|
}
|
|
catch (error) {
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
run() |