Enhance error handling for Spectre Console markup input in Renderable… #185
This file contains 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: Run Unit Tests | |
on: | |
push: | |
permissions: | |
contents: write | |
jobs: | |
unit-test: | |
name: Unit Test | |
runs-on: ubuntu-latest | |
if: github.repository_owner != 'ShaunLawrie' || (github.ref != 'refs/heads/main' && github.ref != 'refs/heads/prerelease') | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Unit Test | |
shell: pwsh | |
run: | | |
$ErrorActionPreference = "Stop" | |
Write-Host "Working on ${{ github.ref }}" | |
& .\PwshSpectreConsole\Build.ps1 | |
$env:PSModulePath = @($env:PSModulePath, ".\PwshSpectreConsole\") -join ":" | |
$PSVersionTable | Out-Host | |
Get-Module Pester -ListAvailable | Out-Host | |
Invoke-Pester -CI -ExcludeTag "ExcludeCI" | |
- name: Upload Snapshots | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Snapshots | |
path: PwshSpectreConsole.Tests/@snapshots/*.txt |