Skip to content

ci: add next lint and prettier workflow #6

ci: add next lint and prettier workflow

ci: add next lint and prettier workflow #6

Workflow file for this run

name: Next.js Linting Check
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
lint:
name: Linting with Next.js
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Run Linting
run: npm run lint