Skip to content

Aisha/ft/GitHub-issues, updated docs folder #13

Aisha/ft/GitHub-issues, updated docs folder

Aisha/ft/GitHub-issues, updated docs folder #13

Workflow file for this run

name: Lint Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run format:check