Skip to content

Updates from editor

Updates from editor #1

name: Get Figma Images
on:
workflow_dispatch:
push:
# branches:
# - main
jobs:
findNodeReferences:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci --no-audit --no-fund --include=dev --ignore-scripts
- name: Get Figma Images
run: node scripts/getFigmaImages.js '**/*.mdx' > figmaImageNodeUrls.json
- name: Log file content
run: cat figmaImageNodeUrls.json