diff --git a/.gitignore b/.gitignore
index 60cde3202016ffdb87282e29a32c1eae0c7349d0..3fea6ecc2abc86553c5c0bee1c9219f11693f547 100644
--- a/.gitignore
+++ b/.gitignore
@@ -89,7 +89,3 @@ sw.*
 
 # Vim swap files
 *.swp
-
-# Script generated files
-*.missing
-keysUsed
\ No newline at end of file
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b8cdc8bce3e637654e636594a1b9daa176340434
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,23 @@
+stages:
+  - test
+  - build
+
+check-i18n-job:
+  image: ubuntu:20.04
+  stage: test
+  script:
+    - apt update && apt-get -y install jq
+    - ./utils/findMissingI18nKeys.sh
+  only:
+    - merge_requests
+
+build-job:
+  image: node:16
+  stage: build
+  script:
+    - node --version
+    - npm --version
+    - npm install
+    - npm run build
+  only:
+    - merge_requests
diff --git a/components/navigation/menu/Sidebar.vue b/components/navigation/menu/Sidebar.vue
index 1954e41ea789088e0697581919a2ca144c721585..15c6043ae74beba364814fc433167a646c39229c 100644
--- a/components/navigation/menu/Sidebar.vue
+++ b/components/navigation/menu/Sidebar.vue
@@ -5,7 +5,10 @@
 				<img :src="$icon(512)" alt="Accueil" class="logo" />
 				<div>
 					<h1 class="h3">
-						Wotwizard <small><span class="small">v0.22</span></small>
+						Wotwizard
+						<small
+							><span class="small">v{{ $config.clientVersion }}</span></small
+						>
 					</h1>
 					<small class="text-muted">{{ $t("slogan") }}</small>
 				</div>
diff --git a/nuxt.config.js b/nuxt.config.js
index ee308c50be720d2c969898f1d5c6073249ec2ddc..41270b5bd9089f81f7f646c3c19eab256281f6e9 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -1,5 +1,6 @@
 import i18n from "./i18n"
 import webpack from "webpack"
+import pkg from "./package.json"
 
 export default {
 	// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
@@ -8,6 +9,12 @@ export default {
 	// Target: https://go.nuxtjs.dev/config-target
 	target: "static",
 
+	// Variables that can be accessed by $config
+	publicRuntimeConfig: {
+		// Application version from package.json
+		clientVersion: pkg.version
+	},
+
 	// Global page headers: https://go.nuxtjs.dev/config-head
 	head: {
 		title: "wotwizard-ui",
diff --git a/package.json b/package.json
index 63e0b611bdd5482738428659d4afb543ce7f816b..6412c9ffd3a1d4f13df6d652e5c91b1244adef23 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
 	"name": "wotwizard-ui",
-	"version": "1.0.0",
+	"version": "0.22.0",
 	"private": true,
 	"scripts": {
 		"dev": "nuxt",
diff --git a/utils/findMissingI18nKeys.sh b/utils/findMissingI18nKeys.sh
index 920c4ed3a839acd457f35bfea26ff2422f91af6f..89327de7d8aa236f2e46cc6b64e9dc869cd5c076 100755
--- a/utils/findMissingI18nKeys.sh
+++ b/utils/findMissingI18nKeys.sh
@@ -34,7 +34,7 @@ do
         then
             echo -e "create ${RED}$key${NC} in file ${GREEN}$f${NC}"
             value=$(jq -e ".$key" i18n/locales/fr.json)
-            if [ "$value" == "null" ]
+            if [ $value = "null" ]
             then
                 filter=".$key = \"TO_TRANSLATE\""
             else