From e53b4144473fc36eba89519cf288b1ea75ea679b Mon Sep 17 00:00:00 2001 From: Antoine Rybacki <15911822+Lifeismana@users.noreply.github.com> Date: Tue, 26 Nov 2024 02:40:44 +0100 Subject: [PATCH] eslint action --- .github/workflows/eslint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/eslint.yml diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 0000000..c992421 --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,11 @@ +name: Eslint +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: npm ci + - name: Run ESLint + run: npx eslint . --ext .mjs \ No newline at end of file