VSCode-Updater v3.0.0 — deterministic installer engine #45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pester Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Tests | |
| shell: pwsh | |
| run: | | |
| # Import your module explicitly | |
| Import-Module "$env:GITHUB_WORKSPACE/VSCode-Updater.psm1" -Force | |
| # Run Pester using the built-in version | |
| Invoke-Pester -Path Tests -Output Detailed |