initial setup with nextjs, shadcn, tailwind, prettier, eslint
Some checks failed
Lint / Lint (push) Failing after 7s

This commit is contained in:
2025-08-14 16:22:39 +02:00
parent a31203c2c5
commit 70495470cd
22 changed files with 4424 additions and 0 deletions

31
.gitea/workflows/lint.yml Normal file
View File

@@ -0,0 +1,31 @@
name: Lint
on:
pull_request:
push:
branches:
- '**' # matches every branch
jobs:
eslint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run lint check
run: pnpm run lint