Skip to content

chore: Lint fix

chore: Lint fix #6

Workflow file for this run

name: Code Quality
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install Yarn
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linting
run: yarn lint
- name: Check formatting
run: yarn prettier --check "**/*.{ts,js,yml}"