Skip to content

Fix #336 : Updated Readme File #609

Fix #336 : Updated Readme File

Fix #336 : Updated Readme File #609

Workflow file for this run

name: CI Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint