Introduce native-image-(job|pr)-reports feature.

Co-authored-by: Ondřej Douda <ondrej.douda@oracle.com>
This commit is contained in:
Fabio Niephaus
2022-11-03 17:13:30 +01:00
parent c2c2a82199
commit cb02f04137
12 changed files with 13133 additions and 8 deletions

View File

@@ -27,6 +27,7 @@
import * as core from '@actions/core'
import * as constants from './constants'
import {save} from './cache'
import {generateReports} from './features/reports'
/**
* Check given input and run a save process for the specified package manager
@@ -56,6 +57,7 @@ async function ignoreError(promise: Promise<void>): Promise<unknown> {
}
export async function run(): Promise<void> {
generateReports()
await ignoreError(saveCache())
}