generated from PSModule/Template-Action
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.74 KB
/
Action-Test.yml
File metadata and controls
60 lines (51 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Action-Test
run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
on:
workflow_dispatch:
pull_request:
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
ActionTestValid:
name: Action-Test - [Valid Configuration]
runs-on: ubuntu-latest
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Action-Test
id: get-settings
uses: ./
with:
SettingsPath: './tests/scenarios/valid/PSModule.yml'
ActionTestInvalidMissingTestConfig:
name: Action-Test - [Invalid - Missing Test Config]
runs-on: ubuntu-latest
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Action-Test (Expect Failure)
id: get-settings
continue-on-error: true
uses: ./
with:
SettingsPath: './tests/scenarios/invalid-percent-target/PSModule.yml'
- name: Verify Action Failed as Expected
shell: pwsh
run: |
if ('${{ steps.get-settings.outcome }}' -eq 'success') {
Write-Error 'Expected action to fail for invalid configuration, but it succeeded'
exit 1
}
Write-Host '✓ Action failed as expected for invalid configuration'