├── .eslintrc.json ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── package.json ├── test ├── arguments.ts ├── connection.ts └── database-test.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/package.json -------------------------------------------------------------------------------- /test/arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/test/arguments.ts -------------------------------------------------------------------------------- /test/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/test/connection.ts -------------------------------------------------------------------------------- /test/database-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/test/database-test.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirromutth/mysql-action/HEAD/yarn.lock --------------------------------------------------------------------------------