Skip to content

Commit

Permalink
MODLD-547: added Github Actions configs (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
PBobylev authored Oct 17, 2024
1 parent 50d9373 commit fb660d5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Centralized workflow
on:
- push
- pull_request
- workflow_dispatch

jobs:
ui:
# Use the shared workflow from https://github.com/folio-org/.github
uses: folio-org/.github/.github/workflows/ui.yml@v1
# Only handle push events from the main branch or tags, to decrease PR noise
if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag'
secrets: inherit
with:
compile-translations: false
jest-enabled: false
sonar-enabled: false

0 comments on commit fb660d5

Please sign in to comment.