Skip to content

Clear shadow on open item #72

Clear shadow on open item

Clear shadow on open item #72

Workflow file for this run

name: Lint and Format Check
on:
push:
paths-ignore:
- 'src/set-operations-for-spotify'
- 'src/typewriter-formatting'
- 'src/cah-maker'
- 'src/response-display'
- 'src/password-generator'
- 'src/recipes'
- 'src/dvd'
jobs:
main:
name: Run ESLint and Prettier
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up pNPM
uses: pnpm/action-setup@v3
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Install ESLint and Prettier
run: pnpm install
- name: Run ESLint
run: npm run lint:check
- name: Run Prettier
run: npm run format:check