Skip to content

build(docker): add multi-stage Dockerfile for Next.js standalone app #9

build(docker): add multi-stage Dockerfile for Next.js standalone app

build(docker): add multi-stage Dockerfile for Next.js standalone app #9

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
id: eslint
run: pnpm exec eslint . --max-warnings=200