Skip to content

Commit

Permalink
ci: add quotes for paths (#113)
Browse files Browse the repository at this point in the history
Co-authored-by: Almanov Nikita <[email protected]>
  • Loading branch information
github-actions[bot] and nikkeyl authored Aug 31, 2024
1 parent 85e4911 commit bcc29e1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ on:
branches:
- main
paths:
- src/**/*.ts

- 'src/**/*.ts'
push:
branches:
- main
paths:
- src/**/*.ts
- 'src/**/*.ts'

permissions:
actions: read
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/eslint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- main
paths:
- src/**/*.ts
- 'src/**/*.ts'
push:
branches:
- main
paths:
- src/**/*.ts
- 'src/**/*.ts'

jobs:
eslint:
Expand All @@ -36,4 +36,4 @@ jobs:
run: pnpm i

- name: Lint
run: pnpm eslint src/**/*.ts
run: pnpm eslint 'src/**/*.ts'
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: pnpm build

- name: Pretty
run: pnpm prettier index.d.ts --write
run: pnpm prettier 'index.d.ts' --write

- name: Create Release
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- main
paths:
- src/**/*.ts
- 'src/**/*.ts'
push:
branches:
- main
paths:
- src/**/*.ts
- 'src/**/*.ts'

jobs:
spec:
Expand Down
2 changes: 1 addition & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm git-pull-run --pattern 'pnpm-lock.yaml' --command 'pnpm i'
pnpm git-pull-run --pattern 'package.json' --command 'pnpm i'

0 comments on commit bcc29e1

Please sign in to comment.