chore: add JS linter

This commit is contained in:
Sefa Ilkimen
2025-12-02 08:27:04 +01:00
parent af5e06902e
commit 1f5b0f5b49
15 changed files with 1237 additions and 46 deletions
+15
View File
@@ -17,6 +17,21 @@ env:
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
cache: npm
cache-dependency-path: package-lock.json
- name: Install node modules
run: npm ci
- name: Run ESLint
run: npm run lint
test-www-interface:
runs-on: ubuntu-latest
steps: