mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 23:18:21 +01:00
* ci(node): Use correct node version * Remove overrides * update lock file * Change assert to with * Remove duplicated version
44 lines
997 B
YAML
44 lines
997 B
YAML
name: Lucide React Native checks
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- packages/lucide-react-native/**
|
|
- packages/shared/**
|
|
- tools/build-icons/**
|
|
- tools/rollup-plugins/**
|
|
- pnpm-lock.yaml
|
|
|
|
jobs:
|
|
build:
|
|
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: Build
|
|
run: pnpm --filter lucide-react-native build
|
|
|
|
test:
|
|
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: Test
|
|
run: pnpm --filter lucide-react-native test
|