Skip to content

Commit

Permalink
ci: add quotes for paths (#260)
Browse files Browse the repository at this point in the history
Co-authored-by: Almanov Nikita <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl authored Aug 31, 2024
1 parent 8985b3e commit 8149142
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql.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'

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'
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 8149142

Please sign in to comment.