Add transport icons #2431
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/** | |
- pnpm-lock.yaml | |
jobs: | |
lucide-font: | |
runs-on: ubuntu-latest | |
container: ericfennis/lucide-font:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: 16 | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install --filter outline-svg | |
- name: Outline svg Icons | |
run: pnpm build:outline-icons | |
- name: Create directory | |
run: mkdir lucide-font | |
- name: Build font | |
run: fontcustom compile "./outlined" -h -n "lucide" -o ./lucide-font -F | |
- name: "Upload to Artifacts" | |
uses: actions/upload-artifact@v1 | |
with: | |
name: lucide-font | |
path: lucide-font |