Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: updt cofig

the3ash 7470e767 a35463ea

+13 -2
+13 -2
.github/workflows/ci.yml
··· 3 3 on: 4 4 push: 5 5 branches: [main] 6 + paths-ignore: &paths-ignore 7 + - 'LICENSE' 8 + - '.gitignore' 9 + - '**/*.md' 10 + - '**/*.png' 11 + - '**/*.jpg' 12 + - '**/*.jpeg' 13 + - '**/*.gif' 14 + - '**/*.webp' 15 + - '**/*.svg' 6 16 pull_request: 7 17 branches: [main] 18 + paths-ignore: *paths-ignore 8 19 9 20 concurrency: 10 21 group: ${{ github.workflow }}-${{ github.ref }} ··· 47 58 continue-on-error: true 48 59 49 60 - name: Type check 50 - run: tsc -b 61 + run: tsc --noEmit 51 62 52 63 - name: Build 53 64 run: pnpm build ··· 112 123 merge_method: 'squash', 113 124 commit_title: pullRequest.title, 114 125 commit_message: pullRequest.body || '' 115 - }); 126 + });