Skip to content

Action-Test [outputs] - [Having issues with outputs into another step #69] by @MariusStorhaug #90

Action-Test [outputs] - [Having issues with outputs into another step #69] by @MariusStorhaug

Action-Test [outputs] - [Having issues with outputs into another step #69] by @MariusStorhaug #90

name: Action-Test [outputs]
run-name: "Action-Test [outputs] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
ActionTest:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Action-Test [outputs] - [${{ matrix.os }}]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Initialize environment
uses: PSModule/Initialize-PSModule@main
- name: Action-Test
uses: ./
id: action-test
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Name: PSModuleTest
Path: tests/outputs/modules
TestType: Module
- name: Status
shell: pwsh
run: |
Write-Host "Passed: [${{ steps.action-test.outputs.passed }}]"