Skip to content

Uploading everything #11

Uploading everything

Uploading everything #11

Workflow file for this run

name: ESLint
on:
push:
branches:
- dev
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Lint JS
run: npm run lint:js
- name: Lint CSS
run: npm run lint:css
- name: Lint HTML
run: npm run lint:html