Update random.intervalboundary.xml to en #8767
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: Проверка EditorConfig | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| lint: | |
| runs-on: "ubuntu-latest" | |
| if: "! contains(toJSON(github.event.commits.*.message), '[skip-lint]')" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Получение изменённых файлов | |
| id: get_file_changes | |
| uses: trilom/[email protected] | |
| with: | |
| output: ' ' | |
| - name: Запуск editorconfig-checker | |
| run: npx editorconfig-checker ${{ steps.get_file_changes.outputs.files }} |