Skip to content
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b72deec
🩹 [Patch]: Add validation environment variables for scheduled and man…
MariusStorhaug Oct 11, 2025
d1ac933
🩹 [Patch]: Update FILTER_REGEX_INCLUDE to match output directory stru…
MariusStorhaug Oct 11, 2025
53127a1
🩹 [Patch]: Remove FILTER_REGEX_INCLUDE from environment variables in …
MariusStorhaug Oct 11, 2025
8294639
🩹 [Patch]: Remove VALIDATE_ALL_CODEBASE environment variable from Act…
MariusStorhaug Oct 11, 2025
1b9e83d
🩹 [Patch]: Add VALIDATE_NATURAL_LANGUAGE environment variable for doc…
MariusStorhaug Oct 11, 2025
51f9e95
🩹 [Patch]: Restore FILTER_REGEX_INCLUDE environment variable for docu…
MariusStorhaug Oct 11, 2025
5ddc917
🩹 [Patch]: Restore VALIDATE_ALL_CODEBASE environment variable for Act…
MariusStorhaug Oct 11, 2025
679d74d
🩹 [Patch]: Remove FILTER_REGEX_INCLUDE environment variable from Acti…
MariusStorhaug Oct 11, 2025
07f0367
🩹 [Patch]: Update Action-Test workflow to include push event trigger …
MariusStorhaug Oct 11, 2025
773590d
🩹 [Patch]: Remove push event trigger from Action-Test workflow and up…
MariusStorhaug Oct 11, 2025
1999f63
🩹 [Patch]: Update Action-Test workflow to use single quotes for log g…
MariusStorhaug Oct 11, 2025
e23054b
🩹 [Patch]: Update Action-Test workflow to rename log group for stagin…
MariusStorhaug Oct 11, 2025
d3c2c8c
🩹 [Patch]: Restore FILTER_REGEX_INCLUDE environment variable in Actio…
MariusStorhaug Oct 11, 2025
4cc55d0
🩹 [Patch]: Update Action-Test workflow to stage all changes for linti…
MariusStorhaug Oct 11, 2025
344d707
🩹 [Patch]: Update Action-Test workflow to enable push event trigger a…
MariusStorhaug Oct 11, 2025
a07d90a
🩹 [Patch]: Update DEFAULT_BRANCH environment variable to prioritize p…
MariusStorhaug Oct 11, 2025
25bfe1f
🩹 [Patch]: Comment out Get changes step in Action-Test workflow and u…
MariusStorhaug Oct 11, 2025
b192cc7
🩹 [Patch]: Restore Get changes step in Action-Test workflow for file …
MariusStorhaug Oct 11, 2025
d23d661
🩹 [Patch]: Update linting environment variables in Action-Test workfl…
MariusStorhaug Oct 11, 2025
455bc26
🩹 [Patch]: Remove unnecessary environment variables in Action-Test wo…
MariusStorhaug Oct 11, 2025
b233502
🩹 [Patch]: Update Action-Test workflow to create and switch to a 'lin…
MariusStorhaug Oct 11, 2025
58bbae8
🩹 [Patch]: Remove forced deletion of 'lint' branch and comment out co…
MariusStorhaug Oct 11, 2025
4d068ff
🩹 [Patch]: Uncomment commit step in Action-Test workflow and remove u…
MariusStorhaug Oct 11, 2025
1c3fcb0
🩹 [Patch]: Update Action-Test workflow to create a unique lint branch…
MariusStorhaug Oct 11, 2025
af3d861
🩹 [Patch]: Add VALIDATE_ALL_CODEBASE option to Action-Test workflow
MariusStorhaug Oct 11, 2025
1b3680a
🩹 [Patch]: Comment out Get changes step in Action-Test workflow
MariusStorhaug Oct 11, 2025
2a3fd42
🩹 [Patch]: Restore Get changes step in Action-Test workflow
MariusStorhaug Oct 11, 2025
e789c28
🩹 [Patch]: Comment out Get changes step in Action-Test workflow
MariusStorhaug Oct 11, 2025
f991494
🩹 [Patch]: Update super-linter version to v8.1.0 in Action-Test workflow
MariusStorhaug Oct 11, 2025
6ac64f6
🩹 [Patch]: Ensure main branch is specified for push events in Action-…
MariusStorhaug Oct 11, 2025
8bbd23f
🩹 [Patch]: Remove commented-out Get changes step from Action-Test wor…
MariusStorhaug Oct 11, 2025
2ce5bc6
🩹 [Patch]: Fix description formatting in Get-PSModuleTest function
MariusStorhaug Oct 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions .github/workflows/Action-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"

on:
push:
branches:
- main
workflow_dispatch:
pull_request:
schedule:
Expand Down Expand Up @@ -45,20 +48,11 @@
WorkingDirectory: tests/srcTestRepo
ShowSummaryOnSuccess: true

- name: Get changes
uses: PSModule/GitHub-Script@v1
with:
Script: |
LogGroup "List files" {
Get-ChildItem -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
}
LogGroup "Commit changes" {
git add tests/srcTestRepo/outputs/docs/
git commit -m "Update documentation"
}
- name: Lint documentation
uses: super-linter/super-linter/slim@7bba2eeb89d01dc9bfd93c497477a57e72c83240 # v8.2.0
uses: super-linter/super-linter/slim@v8.1.0
env:
GITHUB_TOKEN: ${{ github.token }}
VALIDATE_MARKDOWN: true
VALIDATE_NATURAL_LANGUAGE: true
VALIDATE_ALL_CODEBASE: true
USE_FIND_ALGORITHM: true
Loading