From e674ee4d8ed5fe5d17223162a503215c374f8333 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Mon, 7 Nov 2022 17:10:00 +0100 Subject: [PATCH] Add translation workflow file Just to make sure we continuously test that the tools work. This won't actually update any translations. --- .github/workflows/translate.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/translate.yml diff --git a/.github/workflows/translate.yml b/.github/workflows/translate.yml new file mode 100644 index 00000000..a42115b5 --- /dev/null +++ b/.github/workflows/translate.yml @@ -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