Skip to content

Validate javascript on PRs #1

Validate javascript on PRs

Validate javascript on PRs #1

Workflow file for this run

name: Check Javascript
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: npm i
- name: Run ESLint
run: eslint . --ext .js,.html