mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 23:06:46 +01:00
* ci: reduces workflow triggers * chore: removed lint-contributors step * Update .github/workflows/labeler.yml
24 lines
450 B
YAML
24 lines
450 B
YAML
name: Linting PR
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- icons/*.svg
|
|
|
|
jobs:
|
|
lint-code:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
cache: 'pnpm'
|
|
node-version-file: 'package.json'
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Run Linter
|
|
run: pnpm lint
|