Skip to content

fix(translations): fix text translations after language change #175

fix(translations): fix text translations after language change

fix(translations): fix text translations after language change #175

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
validate_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Dependencies
id: cache_npm
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
if: steps.cache_npm.outputs.cache-hit != 'true'
run: npm install
- name: Run test steps
run: |
grunt
npm run test