├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── __tests__ └── poll.test.ts ├── action.yml ├── dist └── index.js ├── jest.config.js ├── package.json ├── src ├── main.ts ├── poll.ts └── wait.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/poll.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/__tests__/poll.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/dist/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/src/poll.ts -------------------------------------------------------------------------------- /src/wait.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/src/wait.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fountainhead/action-wait-for-check/HEAD/tsconfig.json --------------------------------------------------------------------------------