Update translations #106
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: Lint .js and .json files | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
linter: | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.LINTER }} | |
- name: Install npm | |
run: npm install | |
- name: Run eslint | |
run: npm run lint | |
- name: Run json-align | |
run: npm run json-align | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v6 | |
with: | |
author_name: PhoenicisBot | |
author_email: [email protected] | |
message: 'Lint .js and .json files' | |
add: '*.js *.json' |