(Mi último Pull Request para EnFlujo 😭💔😿) - ➕🌵Añadí las pantallas Matriz 8X8 LED 5050 y Pantalla LCD 16x2🌵➕ #2
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: 🐾 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 |