fix(icons): rename box-select
to square-dashed
#4359
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lucide font checks | |
on: | |
pull_request: | |
paths: | |
- icons/** | |
- tools/build-font/** | |
- pnpm-lock.yaml | |
jobs: | |
lucide-font: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Outline svg Icons | |
run: pnpm build:outline-icons | |
- name: Create font in ./lucide-font | |
run: pnpm build:font | |
- name: 'Upload to Artifacts' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: lucide-font | |
path: lucide-font |