Skip to content

npm i sharp because Next.js told me to #1

npm i sharp because Next.js told me to

npm i sharp because Next.js told me to #1

Workflow file for this run

name: Lint and Formatting Check
on: push
jobs:
main:
name: Run ESLint + Prettier
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Run npm install
run: npm ci
- name: Run ESLint
run: npm run lint:check
- name: Run Prettier
run: npm run format:check