├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── check-dist.yml │ ├── codeql-analysis.yml │ └── test.yml ├── .gitignore ├── .maestro ├── android-contacts.yaml ├── ios-settings.yaml └── subflows │ └── dismiss-dialog.yaml ├── .prettierignore ├── .prettierrc.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── __tests__ └── main.test.ts ├── action.yml ├── dist ├── 37.index.js ├── 37.index.js.map ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── jest.config.js ├── package.json ├── src ├── api.ts ├── constants.ts ├── fsutils.ts ├── idb.ts ├── maestro.ts └── main.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.maestro/android-contacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.maestro/android-contacts.yaml -------------------------------------------------------------------------------- /.maestro/ios-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.maestro/ios-settings.yaml -------------------------------------------------------------------------------- /.maestro/subflows/dismiss-dialog.yaml: -------------------------------------------------------------------------------- 1 | appId: com.android.contacts 2 | --- 3 | - tapOn: "CANCEL" -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/37.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/dist/37.index.js -------------------------------------------------------------------------------- /dist/37.index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/dist/37.index.js.map -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/package.json -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/fsutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/src/fsutils.ts -------------------------------------------------------------------------------- /src/idb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/src/idb.ts -------------------------------------------------------------------------------- /src/maestro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/src/maestro.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dniHze/maestro-test-action/HEAD/tsconfig.json --------------------------------------------------------------------------------