fix(metadata): added window related tags to grid-2x2
icon metadata file
#4632
Workflow file for this run
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 | |
- 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 |