├── .editorconfig ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── change-request.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bower.json ├── docs ├── 01-What-Is-An-Action.md ├── 02-Core.md ├── 03-Exec.md ├── 04-IO.md ├── 05-Tool-Cache.md ├── 06-Cache.md └── README.md ├── package.json ├── spago.yaml ├── src └── GitHub │ └── Actions │ ├── Cache.js │ ├── Cache.purs │ ├── Core.js │ ├── Core.purs │ ├── Exec.js │ ├── Exec.purs │ ├── IO.js │ ├── IO.purs │ ├── ToolCache.js │ └── ToolCache.purs └── test ├── Main.purs ├── action.yml └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/change-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.github/ISSUE_TEMPLATE/change-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/bower.json -------------------------------------------------------------------------------- /docs/01-What-Is-An-Action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/01-What-Is-An-Action.md -------------------------------------------------------------------------------- /docs/02-Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/02-Core.md -------------------------------------------------------------------------------- /docs/03-Exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/03-Exec.md -------------------------------------------------------------------------------- /docs/04-IO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/04-IO.md -------------------------------------------------------------------------------- /docs/05-Tool-Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/05-Tool-Cache.md -------------------------------------------------------------------------------- /docs/06-Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/06-Cache.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/docs/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /spago.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/spago.yaml -------------------------------------------------------------------------------- /src/GitHub/Actions/Cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/Cache.js -------------------------------------------------------------------------------- /src/GitHub/Actions/Cache.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/Cache.purs -------------------------------------------------------------------------------- /src/GitHub/Actions/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/Core.js -------------------------------------------------------------------------------- /src/GitHub/Actions/Core.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/Core.purs -------------------------------------------------------------------------------- /src/GitHub/Actions/Exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/Exec.js -------------------------------------------------------------------------------- /src/GitHub/Actions/Exec.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/Exec.purs -------------------------------------------------------------------------------- /src/GitHub/Actions/IO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/IO.js -------------------------------------------------------------------------------- /src/GitHub/Actions/IO.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/IO.purs -------------------------------------------------------------------------------- /src/GitHub/Actions/ToolCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/ToolCache.js -------------------------------------------------------------------------------- /src/GitHub/Actions/ToolCache.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/src/GitHub/Actions/ToolCache.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/test/Main.purs -------------------------------------------------------------------------------- /test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/test/action.yml -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-contrib/purescript-github-actions-toolkit/HEAD/test/index.js --------------------------------------------------------------------------------