Skip to content

Add stackblitz file icon #1187

Add stackblitz file icon

Add stackblitz file icon #1187

Workflow file for this run

name: Check SVG icon colors
on:
pull_request:
paths:
- 'icons/*.svg'
permissions:
contents: read
jobs:
color-check:
name: SVG Color Check
runs-on: ubuntu-latest
env:
TARGET_BRANCH: ${{ github.event.pull_request.base.ref }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
persist-credentials: false
- name: Check colors 🎨
run: |
svgFiles=$(git diff origin/${{ env.TARGET_BRANCH }} --diff-filter=ACMRTUX --name-only | grep '.svg$')
npx svg-color-linter --colors material-colors.yml ${svgFiles}