Skip to content

new attempt for lesson checker and fixed typo #58

new attempt for lesson checker and fixed typo

new attempt for lesson checker and fixed typo #58

Workflow file for this run

name: Lint Code
on:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Dependencies
run: npm install
- name: Run Linting
run: npm run lint