add default intents #18
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 Codebase | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
# Configuración del repositorio | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Instalación de Node.js y dependencias | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
# Ejecución de Prettier | |
- name: Run Prettier | |
run: npm run prettier:check | |
continue-on-error: false | |
# Ejecución de ESLint | |
- name: Run ESLint | |
run: npm run lint | |
continue-on-error: false |