feat(i18n): new translation updates #310
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: Testing | |
on: | |
push: | |
branches-ignore: | |
- feat/translations | |
pull_request: | |
branches-ignore: | |
- feat/translations | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Lint | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Volta | |
uses: volta-cli/action@v3 | |
- name: Install Dependencies | |
run: yarn --immutable | |
- name: Run ESLint | |
run: yarn lint | |
build: | |
runs-on: ubuntu-latest | |
name: Build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Volta | |
uses: volta-cli/action@v3 | |
- name: Install Dependencies | |
run: yarn --immutable | |
- name: Compile code | |
run: yarn build |