From 6f79f4672d2970610a7c009be9a9e0b6946316eb Mon Sep 17 00:00:00 2001 From: Sam Mousa Date: Wed, 24 Apr 2024 11:09:28 +0200 Subject: [PATCH] chore(ci): add separate github action workflow that runs eslint --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..c1af441c0e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,14 @@ +name: CI +on: + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Install modules + run: npm install + - name: Run ESLint + run: npm run lint