Lf 3934 create separate number input with localization support #616
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: "Lint Translation Files" | |
on: | |
# Trigger the workflow on pull request, | |
# but only for the integration branch | |
pull_request: | |
branches: | |
- integration | |
jobs: | |
run-linters-in-webapp: | |
name: Run linters in webapp | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/webapp/ | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 6.26.1 | |
- name: Install pnpm dependencies | |
run: pnpm install | |
- name: Run linters | |
run: npx eslint './public/locales/**/*.json' | |
run-linters-in-api: | |
name: Run linters in api | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
working-directory: packages/api/ | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install dependencies for Node.js server | |
run: npm install | |
- name: Run linters | |
run: npx eslint './src/jobs/locales/**/*.json' './src/templates/locales/**/*.json' |