Skip to content

Commit

Permalink
ci(ui): add conditions for running CI workflow for UI
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar committed Apr 4, 2024
1 parent a6456b0 commit e85bb48
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@ name: CI Workflow (UI)
on:
push:
branches: [ dev, main ]
paths:
- 'ui/**'
- '.github/workflows/ci-ui.yaml'

pull_request:
branches: [ dev, main ]
paths:
- 'ui/**'
- '.github/workflows/ci-ui.yaml'

jobs:
run-ci:
if: "!contains(github.event.head_commit.message, 'chore: release v')"
name: Lint, Typecheck, Test, and Build
runs-on: ubuntu-latest

Expand Down

0 comments on commit e85bb48

Please sign in to comment.