Merge pull request #140 from Adri1/tera-locales-edit #1052
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
# Checks if any files end with `messages.json` and fails if any are found | |
validate-filenames: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Filename Inspector | |
uses: scheduleonce/[email protected] | |
with: | |
pattern: ^(?!.*messages\.json$).* # Match files that do NOT end with 'messages.json' | |
path: "**/*.json" |