add javascript/eslint action
Some checks failed
CSS Linter / CSS-Lint (push) Successful in 19s
Javascript Linter / Javascript-Lint (push) Failing after 10s
Python formatting PEP8 / Pyhton-PEP8 (push) Successful in 12s

This commit is contained in:
Finn Christiansen 2023-06-01 21:21:06 +02:00
parent d6543909a5
commit 02a1ef7db8
2 changed files with 34 additions and 0 deletions

14
.eslintrc.js Normal file
View file

@ -0,0 +1,14 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
}
}

View file

@ -0,0 +1,20 @@
name: Javascript Linter
run-name: ${{ gitea.actor }} is running eslint
on: [push]
jobs:
Javascript-Lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependencies
run: |
npm install eslint
- name: Run checking
run: |
npx eslint app/static/app.js