From 5c92b464db7fcd074ea6e61cad20eff33e0ecc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= <41128238+raphckrman@users.noreply.github.com> Date: Wed, 3 Apr 2024 20:28:30 +0200 Subject: [PATCH] Create lint.yml --- .github/workflows/lint.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..7b76ea6 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,13 @@ +name: ESLint +on: [push, pull_request, workflow_call] + + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Dependencies + run: npm i + - name: Run ESLint + run: npm run lint