├── .eslintignore ├── .eslintrc.json ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist ├── post │ └── index.js ├── server │ ├── file.js │ ├── index.js │ ├── serializer.js │ ├── validator.js │ ├── worker-pipeline.js │ ├── worker.js │ └── worker1.js ├── start │ └── index.js └── start_and_log │ └── index.js ├── package.json ├── pnpm-lock.yaml ├── src ├── constants.ts ├── getPort.ts ├── inputs.ts ├── pidIsRunning.ts ├── post.ts ├── server.ts ├── start.ts └── start_and_log.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/post/index.js -------------------------------------------------------------------------------- /dist/server/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/file.js -------------------------------------------------------------------------------- /dist/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/index.js -------------------------------------------------------------------------------- /dist/server/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/serializer.js -------------------------------------------------------------------------------- /dist/server/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/validator.js -------------------------------------------------------------------------------- /dist/server/worker-pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/worker-pipeline.js -------------------------------------------------------------------------------- /dist/server/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/worker.js -------------------------------------------------------------------------------- /dist/server/worker1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/server/worker1.js -------------------------------------------------------------------------------- /dist/start/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/start/index.js -------------------------------------------------------------------------------- /dist/start_and_log/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/dist/start_and_log/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/getPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/getPort.ts -------------------------------------------------------------------------------- /src/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/inputs.ts -------------------------------------------------------------------------------- /src/pidIsRunning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/pidIsRunning.ts -------------------------------------------------------------------------------- /src/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/post.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- 1 | import "turborepo-remote-cache"; 2 | -------------------------------------------------------------------------------- /src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/start.ts -------------------------------------------------------------------------------- /src/start_and_log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/src/start_and_log.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trappar/turborepo-remote-cache-gh-action/HEAD/tsconfig.json --------------------------------------------------------------------------------