Skip to content

set "noImplicitAny" to true and fix the problems #78

set "noImplicitAny" to true and fix the problems

set "noImplicitAny" to true and fix the problems #78

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