Skip to content

Commit

Permalink
ci: Extend branches inclusion in quality.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
alahyaoui authored Jan 19, 2024
1 parent 57f586d commit 58863bb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Code Quality checks
name: Format checking
on:
push:
branches: [ "main", "quality", "development", "draft" ]
pull_request:
branches: [main]
# The branches below must be a subset of the branches above
branches: [ "main", "quality", "development", "draft" ]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -14,7 +17,7 @@ jobs:
strategy:
matrix:
node-version: [18]

steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit 58863bb

Please sign in to comment.