Add translation workflow file

Just to make sure we continuously test that the tools work. This won't
actually update any translations.
This commit is contained in:
Pierre Ossman 2022-11-07 17:10:00 +01:00
parent d9b2606d8c
commit e674ee4d8e
1 changed files with 15 additions and 0 deletions

15
.github/workflows/translate.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Translate
on: [push, pull_request]
jobs:
translate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm install
- run: sudo apt-get install gettext
- run: make -C po update-pot
- run: make -C po update-po
- run: make -C po update-js