aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/encoding.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/encoding.yml')
-rw-r--r--.github/workflows/encoding.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.github/workflows/encoding.yml b/.github/workflows/encoding.yml
index 0b54639e4..5a730c203 100644
--- a/.github/workflows/encoding.yml
+++ b/.github/workflows/encoding.yml
@@ -3,11 +3,19 @@ on: [push, pull_request]
jobs:
check-loc-encoding:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Check localization files encoding
run: |
- files=$(ls Northstar.Client/mod/resource/*.txt)
+ files=$(ls Northstar.Client/mod/resource/northstar_client_localisation_*.txt)
IFS=$'\n'; files=($files); unset IFS; ! file --mime "${files[@]}" | grep -v "charset=utf-16le"
+ check-missing-translations:
+ runs-on: ubuntu-22.04
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Look out for missing translations
+ run: node .github/build/find-missing-translations.js
+ continue-on-error: true