Skip to content

Lf 4414 the user is able to create an animal with the incomplete date of birth or date brought in #1240

Lf 4414 the user is able to create an animal with the incomplete date of birth or date brought in

Lf 4414 the user is able to create an animal with the incomplete date of birth or date brought in #1240

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/action-setup@v2.0.1
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'