Skip to content

creating quality workflow and husky commit checks #7

creating quality workflow and husky commit checks

creating quality workflow and husky commit checks #7

Workflow file for this run

name: Linting
on: pull_request
jobs:
lint:
name: Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/hydrogen"
cache: npm
- run: npm ci
- run: npm run lint:prettier:check