├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── push.yaml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── main.js └── post.js ├── jest.config.mjs ├── package.json ├── src ├── lib │ ├── getVars.ts │ ├── isErrorLike.ts │ └── log.ts ├── main.test.ts ├── main.ts └── post.ts ├── tsconfig.json └── tsup.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/action.yml -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/dist/post.js -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/package.json -------------------------------------------------------------------------------- /src/lib/getVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/src/lib/getVars.ts -------------------------------------------------------------------------------- /src/lib/isErrorLike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/src/lib/isErrorLike.ts -------------------------------------------------------------------------------- /src/lib/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/src/lib/log.ts -------------------------------------------------------------------------------- /src/main.test.ts: -------------------------------------------------------------------------------- 1 | test('Can run', () => { 2 | console.log('TODO') 3 | }) 4 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/src/post.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterworksIO/action-local-cache/HEAD/tsup.config.ts --------------------------------------------------------------------------------