Skip to content

ci: move reusable workflows to separate test repo #25

ci: move reusable workflows to separate test repo

ci: move reusable workflows to separate test repo #25

name: test-and-release
on: push
concurrency:
group: ${{ github.workflow}}-${{ github.ref }}
# Cancel previous runs if not on a release branch
cancel-in-progress: ${{ !contains(github.ref, fromJSON('["master", "main"]')) }}
jobs:
lint-commits:
uses: dhis2/workflows-test/.github/workflows/lint-commits.yml@main
lint:
uses: dhis2/workflows-test/.github/workflows/lint.yml@main
test:
uses: dhis2/workflows-test/.github/workflows/test.yml@main
e2e:
uses: dhis2/workflows-test/.github/workflows/e2e.yml@main
# Skips forks and dependabot PRs
if: '!github.event.push.repository.fork'
secrets: inherit
release:
needs: [lint, test, e2e]
uses: dhis2/workflows-test/.github/workflows/release.yml@main
# Skips forks and dependabot PRs
if: '!github.event.push.repository.fork'
secrets: inherit