Skip to content

Commit

Permalink
Update tslint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyp3Boy authored Oct 10, 2024
1 parent 4a85474 commit 7a9b619
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,19 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
node-version: 18

# Instala las dependencias desde package.json, incluyendo @expo-google-fonts/plus-jakarta-sans
- name: Install Node.js dependencies
run: npm ci

# Ejecuta ESLint y Prettier para analizar los archivos .js en el directorio src
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true
files: |
"src/**/*.ts" # Archivos TS en el directorio src
"test/**/*.ts" # Archivos TS en el directorio de pruebas
args: --ignore-pattern 'node_modules/*' --ignore-pattern 'dist/*'

0 comments on commit 7a9b619

Please sign in to comment.