From e32f27af7da452679de809b32cf9b32a177f3587 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 15 Sep 2021 12:01:24 +0200 Subject: [PATCH] add check locales to CI workflow --- .github/workflows/test.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4606566df..27ea0e909 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -183,6 +183,35 @@ jobs: path: /tmp/nginx.tar ############################################################################## + # JOB: LOCALES FRONTEND ######################################################### + ############################################################################## + locales_frontend: + name: Locales - Frontend + runs-on: ubuntu-latest + needs: [build_test_frontend] + steps: + ########################################################################## + # CHECKOUT CODE ########################################################## + ########################################################################## + - name: Checkout code + uses: actions/checkout@v2 + ########################################################################## + # DOWNLOAD DOCKER IMAGE ################################################## + ########################################################################## + - name: Download Docker Image (Frontend) + uses: actions/download-artifact@v2 + with: + name: docker-frontend-test + path: /tmp + - name: Load Docker Image + run: docker load < /tmp/frontend.tar + ########################################################################## + # LOCALES FRONTEND ########################################################### + ########################################################################## + - name: frontend | Locales + run: docker run --rm gradido/frontend:test yarn run locales + +############################################################################## # JOB: LINT FRONTEND ######################################################### ############################################################################## lint_frontend: