Pontoon: Update Finnish (fi) localization of Mozilla accounts #3056
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'locale/**/*.po' | |
workflow_dispatch: | |
jobs: | |
run-test: | |
# Pontoon creates one commit per locale every 10 minutes, only run on | |
# the latest commit of the batch. | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Linux packages | |
run: | | |
sudo apt update | |
sudo apt install gettext graphicsmagick -y | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: Install global npm packages | |
run: | | |
npm install -g grunt-cli | |
- name: Clone l10n repository | |
uses: actions/checkout@v4 | |
- name: Install npm packages | |
run: | | |
npm install | |
- name: Run tests | |
run: | | |
npm test |