Add translations and improve style for new settings infos #989
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: Unit test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "17" | |
- name: Install | |
run: npm ci | |
- name: ESLint | |
run: npm run lint:eslint | |
- name: Prettier | |
run: npm run lint:prettier | |
- name: Build | |
run: npm run build |