Skip to content

Update README.md

Update README.md #35

Workflow file for this run

name: Lint check
on: [push]
jobs:
lint:
name: Lint with ESlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm install
- name: copy .env.example to .env
run: cp .env.example .env
- name: Run ESLint check
run: npm run lint