From 87ea1f823e74ab3901cfc74158945da3c9a35087 Mon Sep 17 00:00:00 2001 From: Shlee Date: Sat, 13 Sep 2025 18:48:59 +0930 Subject: [PATCH] Create JS-ESLint.yml --- .github/workflows/JS-ESLint.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/JS-ESLint.yml diff --git a/.github/workflows/JS-ESLint.yml b/.github/workflows/JS-ESLint.yml new file mode 100644 index 000000000..8395cb39f --- /dev/null +++ b/.github/workflows/JS-ESLint.yml @@ -0,0 +1,31 @@ +name: JS - ESLint + +on: + push: + branches: + - dev + - staging + pull_request: + branches: + - dev + - staging + +jobs: + ESLint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: '24' + + - name: Install Node dependencies + run: npm ci + + - name: Run ESLint + run: npm run lint:check + +# - name: Commit linted files +# uses: stefanzweifel/git-auto-commit-action@v5