We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c363e5 commit b88e641Copy full SHA for b88e641
.github/workflows/ci-test.yml
@@ -37,12 +37,18 @@ jobs:
37
- name: Build
38
shell: pwsh
39
run: Invoke-Build Build
40
+ - name: Upload build artifacts
41
+ uses: actions/upload-artifact@v3
42
+ if: matrix.os == 'windows-latest'
43
+ with:
44
+ name: PowerShellEditorServices
45
+ path: module
46
- name: Run tests
47
48
run: Invoke-Build Test
49
- name: Upload test results
50
uses: actions/upload-artifact@v3
- if: ${{ always() }}
51
+ if: always()
52
with:
53
name: ${{ matrix.os }}-test-results
54
path: '**/*.trx'
0 commit comments