├── .github └── workflows │ ├── mongodb-service.yml │ ├── postgres-service.yml │ └── redis-service.yml ├── .gitignore ├── LICENSE ├── README.md ├── mongodb ├── client.js ├── package-lock.json └── package.json ├── postgres ├── client.js ├── package-lock.json └── package.json └── redis ├── client.js ├── package-lock.json └── package.json /.github/workflows/mongodb-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/.github/workflows/mongodb-service.yml -------------------------------------------------------------------------------- /.github/workflows/postgres-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/.github/workflows/postgres-service.yml -------------------------------------------------------------------------------- /.github/workflows/redis-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/.github/workflows/redis-service.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GitHub Actions service container examples 2 | 3 | 4 | -------------------------------------------------------------------------------- /mongodb/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/mongodb/client.js -------------------------------------------------------------------------------- /mongodb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/mongodb/package-lock.json -------------------------------------------------------------------------------- /mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/mongodb/package.json -------------------------------------------------------------------------------- /postgres/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/postgres/client.js -------------------------------------------------------------------------------- /postgres/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/postgres/package-lock.json -------------------------------------------------------------------------------- /postgres/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/postgres/package.json -------------------------------------------------------------------------------- /redis/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/redis/client.js -------------------------------------------------------------------------------- /redis/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/redis/package-lock.json -------------------------------------------------------------------------------- /redis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions/example-services/HEAD/redis/package.json --------------------------------------------------------------------------------