Skip to content

Commit

Permalink
Fix globs
Browse files Browse the repository at this point in the history
  • Loading branch information
Electroid committed Sep 25, 2024
1 parent abdd8c0 commit 51f2e06
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ on:
- "package.json"
- "scripts/**"
- "cmake/**"
- "src/**/*.{c,cpp,h,hpp}"
- "packages/**/*.{c,cpp,h,hpp}"
- "src/**/*.c"
- "src/**/*.cpp"
- "src/**/*.h"
- "packages/**/*.c"
- "packages/**/*.cpp"
- "packages/**/*.h"

env:
BUN_VERSION: "1.1.27"
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/prettier-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ on:
workflow_dispatch:
pull_request:
paths:
- ".github/workflows/prettier.yml"
- ".github/workflows/prettier-format.yml"
- "package.json"
- "scripts/**"
- "**/*.{yml,json,js,ts,tsx,jsx,mjs,cjs,mts,cts}"
- "**/*.yml"
- "**/*.json"
- "**/*.jsx?"
- "**/*.tsx?"
- "**/*.mjs"
- "**/*.cjs"

env:
BUN_VERSION: "1.1.27"
Expand Down

0 comments on commit 51f2e06

Please sign in to comment.