Files
next-boilerplate/.gitea/workflows/lint.yml
Renovate Bot c07ba6b9d0
Some checks failed
Lint / Lint (push) Failing after 2s
Lint / Lint (pull_request) Failing after 1s
chore(deps): update actions/checkout action to v5
2025-08-23 15:01:25 +00:00

32 lines
664 B
YAML

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- 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