feat(uk): add missing locale keys #315
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: Pull Request | |
on: [pull_request] | |
jobs: | |
test: | |
name: Test changes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
repository: 'altmp/altv-locales' | |
- name: Get file changes | |
id: get_file_changes | |
uses: trilom/file-changes-action@v1.2.4 | |
with: | |
output: ' ' | |
- name: Test | |
run: npm run test -- ${{ steps.get_file_changes.outputs.files }} |