NAS-132705 / 25.04 / Adopts middleware changes to CPU and memory reporting on the dashboard widgets #1192
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WebUI | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'src/assets/i18n/**' | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- 'src/assets/i18n/**' | |
jobs: | |
install: | |
name: Checkout and Install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/prepare | |
lint-translations: | |
name: Validate translation strings | |
needs: [install] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/prepare | |
- name: Validate | |
run: yarn run validate-translations |