Fix(l10n): Update translations from Transifex #1645
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: Node | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- stable* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: node | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: Set up npm7 | |
run: npm i -g npm@7 | |
- name: Install dependencies & build | |
run: | | |
npm ci | |
npm run build --if-present | |
- name: Check webpack build changes | |
run: | | |
bash -c "[[ ! \"`git status --porcelain `\" ]] || ( echo 'Uncommited changes in webpack build' && git status && exit 1 )" |