es(pokemon): Fixed a few errors, and complete all missing data until … #326
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: Test | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run i18n-sync | |
- name: Get changed files | |
id: get_changed | |
run: | | |
CHANGED_FILES=$(git status ./locales -s) | |
echo "$CHANGED_FILES" | |
echo "::set-output name=files::$CHANGED_FILES" | |
git diff | |
- name: Assert nothing changed | |
run: if [ -z "${{ steps.get_changed.outputs.files }}" ]; then exit 0; else exit 1; fi |