Skip to content

chore(deps): update node.js to v21.4.0 #110

chore(deps): update node.js to v21.4.0

chore(deps): update node.js to v21.4.0 #110

Workflow file for this run

# ESLint is a great tool to help us automate code standardization with it we can define standardization rules, find non-standard codes and fix them automatically...
name: 🐥 Eslint
on:
push:
branches: [ "KellyWorld" ]
pull_request:
branches: [ "KellyWorld" ]
jobs:
eslint:
name: 🏜️ Starting the action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 👻 Install Node v19
uses: actions/setup-node@v4
with:
node-version: 19
- name: ✨ Install dependencies
run: npm install
- name: 🌈 Run ESLint
run: yarn lint