Skip to content

1. fix lint error

1. fix lint error #84

Workflow file for this run

name: Lint Project
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install Module Dependencies
run: npm clean-install --omit=optional
- name: Lint Project
run: npm run lint