Update tokens.xml Привел к единому регистру остальные ссылки #7779
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: Проверка EditorConfig | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: "ubuntu-20.04" | |
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 }} |