Add abolute path to json files

This commit is contained in:
Jonas Bengtsson 2020-01-03 11:55:35 +01:00
parent 39774526ec
commit 499a64419b

View file

@ -1,5 +1,5 @@
console.log("::add-matcher::.github/android-lint-file-matcher.json"); console.log(`::add-matcher::${process.cwd()}/.github/android-lint-file-matcher.json`);
console.log("::add-matcher::.github/android-lint-line-matcher.json"); console.log(`::add-matcher::${process.cwd()}/.github/android-lint-line-matcher.json`);
console.log("::add-matcher::.github/gradle-matcher.json"); console.log(`::add-matcher::${process.cwd()}/.github/gradle-matcher.json`);
console.log("::add-matcher::.github/kotlin-error-matcher.json"); console.log(`::add-matcher::${process.cwd()}/.github/kotlin-error-matcher.json`);
console.log("::add-matcher::.github/kotlin-warning-matcher.json"); console.log(`::add-matcher::${process.cwd()}/.github/kotlin-warning-matcher.json`);