mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 17:16:21 +01:00
* Improve license message * Implement license notice in lucide-static * Tighten package PR workflows * Update lockfile
32 lines
657 B
YAML
32 lines
657 B
YAML
name: Lucide Solid Checks
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- packages/lucide-solid/**
|
|
- tools/build-icons/**
|
|
- tools/rollup-plugins/**
|
|
- pnpm-lock.yaml
|
|
|
|
jobs:
|
|
lucide-solid:
|
|
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-solid build
|
|
|
|
- name: Test
|
|
run: pnpm --filter lucide-solid test
|