Experimenting with GH Actions

This commit is contained in:
pietervdvn 2021-04-11 03:17:59 +02:00
parent ad53768ac7
commit 52bf5d73ce
3 changed files with 8 additions and 4 deletions

View file

@ -35,7 +35,9 @@ jobs:
- name: Set failure key
run: |
ls
if [[ -f "layer_report.txt" || -f "missing_licenses.txt" ]]; then
echo "Found a report..."
echo "VALIDATION_FAILED=true" >> $GITHUB_ENV
else
echo "VALIDATION_FAILED=false" >> $GITHUB_ENV

View file

@ -130,6 +130,7 @@ if (layerErrorCount.length + themeErrorCount.length == 0) {
const msg = (`Found ${layerErrorCount.length} errors in the layers; ${themeErrorCount.length} errors in the themes`)
console.log(msg)
if (process.argv.indexOf("--report") >= 0) {
console.log("Writing report!")
writeFileSync("layer_report.txt", errors)
}

View file

@ -202,6 +202,7 @@ if (missingLicenses.length > 0) {
const msg = `There are ${missingLicenses.length} licenses missing.`
console.error(msg)
if (process.argv.indexOf("--report") >= 0) {
console.log("Writing report!")
writeFileSync("missing_licenses.txt", missingLicenses.join("\n"))
}
if (process.argv.indexOf("--no-fail") < 0) {