Merge pull request #7573 from Automattic/add/update-tour-hightlight-c… #472
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trunk Workflow | |
on: | |
push: | |
branches: | |
- trunk | |
jobs: | |
unit-js: | |
uses: ./.github/workflows/js.yml | |
secrets: inherit | |
unit-php: | |
uses: ./.github/workflows/php.yml | |
secrets: inherit | |
e2e: | |
uses: ./.github/workflows/e2e.yml | |
secrets: inherit | |
docs: | |
needs: [ unit-js, unit-php, e2e ] | |
uses: ./.github/workflows/build-docs.yml | |
build: | |
needs: [ unit-js, unit-php, e2e ] | |
uses: ./.github/workflows/build.yml |