Skip to content

Commit

Permalink
Merge pull request #2025 from fastn-stack/fix-ci-globs
Browse files Browse the repository at this point in the history
Fix(CI): filter paths in test-and-formatting workflow
  • Loading branch information
amitu authored Nov 14, 2024
2 parents 7f68494 + c3b7a59 commit 466bd30
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests-and-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ on:
- '**.js'
- '**.css'
- '!t/**' # We use this for playground
- '!fastn.com/'
- '!fastn.com/**'
- '!v0.5/**' # TODO: remove this when we're ready to release v0.5
- '!.github/'
- '!.github/**'
- '.github/workflows/tests-and-formatting.yml'
pull_request:
branches: [ main ]
Expand All @@ -29,10 +29,10 @@ on:
- '**.html'
- '**.js'
- '**.css'
- '!t/' # We use this for playground
- '!fastn.com/'
- '!v0.5/' # TODO: remove this when we're ready to release v0.5
- '!.github/'
- '!t/**' # We use this for playground
- '!fastn.com/**'
- '!v0.5/**' # TODO: remove this when we're ready to release v0.5
- '!.github/**'
- '.github/workflows/tests-and-formatting.yml'
jobs:
tests-and-formatting:
Expand Down

0 comments on commit 466bd30

Please sign in to comment.