

-
We will be using [Yunit](https://github.com/Uberi/Yunit) as our unit test library set up your Yunit test suite to output using the `Junit` format
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
GitHub-Action-Ahk2Exe
:octocat:⌨ GitHub Action to compile AutoHotKey scripts using Ahk2Exe / AutoHotKey スクリプトを Ahk2Exe でコンパイルする GitHub Action のような何か
We will be borrowing the installation script for autohotkey from [Ahk2Exe Github Action](https://github.com/nekocodeX/GitHub-Action-Ahk2Exe) in the `steps` of your workflow you will want, something like this, to install autohotkey ```yaml - name: Install Scoop shell: powershell run: | iwr -useb get.scoop.sh | iex scoop bucket add extras - name: Add to environment variables shell: powershell run: Write-Output ('Path=' + $Env:SystemDrive + '\Windows\System32' + ';' + $Env:UserProfile +'\scoop\shims') >> $Env:GITHUB_ENV - name: Install AutoHotkey shell: powershell run: scoop install autohotkey ```
-
``` now we need to parse the report, I've been using [action-junit-report](https://github.com/mikepenz/action-junit-report) for that
-
You can find a working example in this project: [EventEmitter.ahk](https://github.com/gustavooavila/EventEmitter.ahk)