Skip to content

perf: sparse fieldsets and page limit for JSON:API requests #10

perf: sparse fieldsets and page limit for JSON:API requests

perf: sparse fieldsets and page limit for JSON:API requests #10

Workflow file for this run

name: Purge jsDelivr CDN Cache
on:
push:
branches: [main]
paths:
- 'dist/**'
jobs:
purge:
runs-on: ubuntu-latest
steps:
- name: Purge jsDelivr cache
run: |
for ref in main latest; do
for file in appverse.umd.js appverse.umd.js.map appverse.es.js appverse.es.js.map appverse.css; do
echo "Purging @${ref}/dist/${file}..."
curl -s "https://purge.jsdelivr.net/gh/Sweet-and-Fizzy/ood-appverse@${ref}/dist/${file}"
done
done