Skip to content

Commit

Permalink
MODLD-547: added Github Actions configs
Browse files Browse the repository at this point in the history
  • Loading branch information
PBobylev committed Oct 16, 2024
1 parent 50d9373 commit 2d85ab6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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-test-command: npm run test:unit

0 comments on commit 2d85ab6

Please sign in to comment.