Bump Azure.Data.Tables from 12.8.0 to 12.8.2 in /Source #19
Workflow file for this run
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 tests | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Azurite | |
id: azurite-cache | |
uses: actions/cache@v3 | |
with: | |
key: azurite-cache | |
path: | | |
~/.npm | |
- name: Install Azurite | |
if: steps.azurite-cache.outputs.cache-hit != 'true' | |
run: npm install -g azurite | |
- name: Install and cache PowerShell modules | |
uses: potatoqualitee/[email protected] | |
with: | |
modules-to-cache: Pester, PlatyPS | |
- name: Build module | |
run: .\build.ps1 -RunTests None | |
shell: pwsh | |
- name: Run tests | |
run: .\Tests\TestRunner.ps1 -TestResults -Verbosity Normal | |
shell: pwsh | |
- name: Publish test results | |
uses: EnricoMi/publish-unit-test-result-action/composite@v2 | |
continue-on-error: true | |
with: | |
files: testResults.xml |