initial commit of actions

This commit is contained in:
Dominik Polakovics Polakovics 2026-01-31 18:56:04 +01:00
commit 949ece5785
44660 changed files with 12034344 additions and 0 deletions

View file

@ -0,0 +1,5 @@
describe('setup-android', () => {
it('has sanity', async () => {
expect(true)
})
})

View file

@ -0,0 +1,19 @@
#!/usr/bin/env node
const absoluteFilename = __filename;
const relativeFilename = __filename.replace(`${__dirname}/`, '');
// android-lint-file
console.log(`${absoluteFilename}: Warning: checkClientTrusted is empty, which could cause insecure network traffic due to trusting arbitrary TLS/SSL certificates presented by peers [TrustAllX509TrustManager]`);
// android-lint-line
console.log(`${absoluteFilename}:9: Warning: A newer version of androidx.core:core-ktx than 1.2.0-beta01 is available: 1.2.0-rc01 [GradleDependency]`);
// gradle
console.log(`warning unused-exclude-by-conf the exclude dependency is not in your dependency graph, so has no effect
${relativeFilename}:12`);
// kotlin-error
console.log(`e: ${absoluteFilename}: (16, 13): Val cannot be reassigned`);
// kotlin-warning
console.log(`w: ${absoluteFilename}: (19, 13): Parameter 'foo' is never used`);