mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 17:06:21 +01:00
28 lines
564 B
YAML
28 lines
564 B
YAML
name: Lucide Static checks
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- packages/lucide-static/**
|
|
- tools/build-icons/**
|
|
- pnpm-lock.yaml
|
|
|
|
jobs:
|
|
lucide-static:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 8
|
|
- uses: actions/setup-node@v3.8.1
|
|
with:
|
|
node-version: 18
|
|
cache: 'pnpm'
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm --filter lucide-static build
|