├── .github └── workflows │ ├── main.yml │ └── update-index-js.yml ├── .gitignore ├── LICENSE ├── PesterActionV1 ├── README.md ├── SAMPLE-action.yml ├── _init │ ├── README.md │ └── index.js ├── action.ps1 ├── action.yml └── lib │ └── ActionsCore.psm1 ├── README.md ├── src ├── NOTES.md ├── README.md ├── invoke-pwsh.js ├── package-lock.json └── package.json └── tests ├── failing └── failing.tests.ps1 └── sample ├── actionCore.tests.ps1 └── sample.tests.ps1 /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/update-index-js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/.github/workflows/update-index-js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | src/node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/LICENSE -------------------------------------------------------------------------------- /PesterActionV1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/README.md -------------------------------------------------------------------------------- /PesterActionV1/SAMPLE-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/SAMPLE-action.yml -------------------------------------------------------------------------------- /PesterActionV1/_init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/_init/README.md -------------------------------------------------------------------------------- /PesterActionV1/_init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/_init/index.js -------------------------------------------------------------------------------- /PesterActionV1/action.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/action.ps1 -------------------------------------------------------------------------------- /PesterActionV1/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/action.yml -------------------------------------------------------------------------------- /PesterActionV1/lib/ActionsCore.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/PesterActionV1/lib/ActionsCore.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/README.md -------------------------------------------------------------------------------- /src/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/src/NOTES.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/src/README.md -------------------------------------------------------------------------------- /src/invoke-pwsh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/src/invoke-pwsh.js -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/src/package.json -------------------------------------------------------------------------------- /tests/failing/failing.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/tests/failing/failing.tests.ps1 -------------------------------------------------------------------------------- /tests/sample/actionCore.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/tests/sample/actionCore.tests.ps1 -------------------------------------------------------------------------------- /tests/sample/sample.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/GitHub-Actions/HEAD/tests/sample/sample.tests.ps1 --------------------------------------------------------------------------------