⚙️ Create new workflow with `lychee`

This commit is contained in:
pheralb
2024-04-20 20:29:59 +01:00
parent 78a344d9e5
commit a70cdb0c44
2 changed files with 35 additions and 1 deletions
@@ -1,4 +1,4 @@
name: 🔎 Check
name: ⚙️ Check app
on:
push:
@@ -43,3 +43,8 @@ jobs:
- name: Check svgs size
run: pnpm start
working-directory: ./check-size
build-app:
runs-on: ubuntu-latest
steps:
- name: Build
run: pnpm onlybuild
+29
View File
@@ -0,0 +1,29 @@
name: 🔎 Check links
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Restore lychee cache
uses: actions/cache@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: CDN
id: lychee
uses: lycheeverse/lychee-action@v1.9.3
with:
fail: true
args: '--base . ./src/data/svgs.ts --cache --max-cache-age 3d . --include "https://cdn.svgl.app"'