Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/bugsounet/MMM-Pir into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
bugsounet committed Feb 17, 2024
2 parents 2a14b7e + 179458a commit e0952e3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "ESLint Testing"

on: [pull_request]

jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Dependencies
run: npm prune

- name: Run ESLint
run: npx eslint *.js installer/*.js components/*.js --config .eslintrc.js
continue-on-error: false

0 comments on commit e0952e3

Please sign in to comment.