Skip to content

ci: fix if expressions #27

ci: fix if expressions

ci: fix if expressions #27

name: test-and-release

Check failure on line 1 in .github/workflows/test-and-release.yml

View workflow run for this annotation

GitHub Actions / test-and-release

Invalid workflow file

The workflow is not valid. .github/workflows/test-and-release.yml: Unexpected tag '!github.event.push.repository.fork'
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