2024-02-24 23:58:21 +01:00
|
|
|
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
|
2024-06-14 00:40:11 +02:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
2024-02-24 23:58:21 +01:00
|
|
|
with:
|
2024-06-14 00:40:11 +02:00
|
|
|
node-version: 20
|
2024-02-24 23:58:21 +01:00
|
|
|
- name: Install deps
|
|
|
|
working-directory: .github/translation-checker
|
|
|
|
run: npm ci
|
|
|
|
- name: Run Translation Checker
|
|
|
|
working-directory: .github/translation-checker
|
|
|
|
run: npm start
|