This file contains hidden or 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: 馃惥 Estilo C贸digo | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 馃惎 Obtener c贸digo del repositorio | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: 馃悳 Activar Corepack | |
| run: corepack enable | |
| - name: 馃悵 Usar Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| cache: 'yarn' | |
| - name: 馃 Instalar dependencias | |
| run: | | |
| yarn install --immutable | |
| - name: 馃憖 Buscar errores | |
| run: yarn lint |