├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yaml ├── dist ├── post │ └── index.js ├── starter │ └── index.js └── turboServer │ └── index.js ├── package.json ├── prettier.config.js ├── src ├── post.ts ├── starter.ts ├── turboServer.ts └── utils │ ├── artifactApi.ts │ ├── constants.ts │ ├── downloadArtifact.ts │ ├── printServerLogs.ts │ ├── stopServer.ts │ └── uploadArtifacts.ts ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [felixmosh] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | lib 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/action.yaml -------------------------------------------------------------------------------- /dist/post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/dist/post/index.js -------------------------------------------------------------------------------- /dist/starter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/dist/starter/index.js -------------------------------------------------------------------------------- /dist/turboServer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/dist/turboServer/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/post.ts -------------------------------------------------------------------------------- /src/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/starter.ts -------------------------------------------------------------------------------- /src/turboServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/turboServer.ts -------------------------------------------------------------------------------- /src/utils/artifactApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/utils/artifactApi.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/downloadArtifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/utils/downloadArtifact.ts -------------------------------------------------------------------------------- /src/utils/printServerLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/utils/printServerLogs.ts -------------------------------------------------------------------------------- /src/utils/stopServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/utils/stopServer.ts -------------------------------------------------------------------------------- /src/utils/uploadArtifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/src/utils/uploadArtifacts.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixmosh/turborepo-gh-artifacts/HEAD/yarn.lock --------------------------------------------------------------------------------