Skip to content

Fix indent github action #7

Fix indent github action

Fix indent github action #7

Workflow file for this run

name: ESLint
on: [push, pull_request]
jobs:
eslint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16' # Set this to the node version you want to use
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint