mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 18:45:21 +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@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
- name: Install deps
|
|
working-directory: .github/translation-checker
|
|
run: npm ci
|
|
- name: Run Translation Checker
|
|
working-directory: .github/translation-checker
|
|
run: npm start
|