mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-23 02:55:19 +01:00
27 lines
574 B
YAML
27 lines
574 B
YAML
|
name: Check translations
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- "BlueMapCommon/webapp/public/lang/**"
|
||
|
- ".github/translation-checker/**"
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 18
|
||
|
- name: Install deps
|
||
|
working-directory: .github/translation-checker
|
||
|
run: npm ci
|
||
|
- name: Run Translation Checker
|
||
|
working-directory: .github/translation-checker
|
||
|
run: npm start
|