Skip to content

Commit

Permalink
Merge pull request #10320 from vector-im/travis/ci-i18n
Browse files Browse the repository at this point in the history
Verify i18n in CI
  • Loading branch information
turt2live authored Jul 12, 2019
2 parents c7b24f7 + c22e03a commit 6762727
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .buildkite/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,14 @@ steps:
plugins:
- docker#v3.0.1:
image: "node:10"

- label: "🌐 i18n"
command:
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Testing i18n output'"
- "yarn diff-i18n"
plugins:
- docker#v3.0.1:
image: "node:10"
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"reskindex:watch": "reskindex -h src/header -w",
"i18n": "matrix-gen-i18n",
"prunei18n": "matrix-prune-i18n",
"diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && node scripts/compare-file.js src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
"build:res": "node scripts/copy-res.js",
"build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js",
"build:compile": "yarn reskindex && babel --source-maps -d lib src",
Expand Down
10 changes: 10 additions & 0 deletions scripts/compare-file.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const fs = require("fs");

if (process.argv.length < 4) throw new Error("Missing source and target file arguments");

const sourceFile = fs.readFileSync(process.argv[2], 'utf8');
const targetFile = fs.readFileSync(process.argv[3], 'utf8');

if (sourceFile !== targetFile) {
throw new Error("Files do not match");
}

0 comments on commit 6762727

Please sign in to comment.