🧑💻 add workflow to check for unused translation keys #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Unused Language Keys | |
on: [ push, pull_request ] | |
jobs: | |
check-unused-lang-keys: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
- name: Run Language Key Check | |
run: php .github/workflows/check-unused-lang-keys.php |