From 5ddec759a2a71c553cfffbab02033fdb37470a2d Mon Sep 17 00:00:00 2001 From: 0neGal Date: Tue, 23 Jul 2024 17:08:32 +0200 Subject: added "Check localizations" action --- .github/workflows/localizations.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/localizations.yml (limited to '.github/workflows/localizations.yml') diff --git a/.github/workflows/localizations.yml b/.github/workflows/localizations.yml new file mode 100644 index 0000000..072d0bc --- /dev/null +++ b/.github/workflows/localizations.yml @@ -0,0 +1,21 @@ +name: Localizations +on: + push: + pull_request: + types: [opened, reopened] + +jobs: + check-localizations: + name: "Check localizations" + runs-on: "ubuntu-latest" + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Setup Node environment + uses: actions/setup-node@v3 + with: + node-version: 20 + - name: Install dependencies + run: npm install + - name: Check localizations + run: npm run langs:check -- cgit v1.2.3