Merge pull request #24 from WordPress/cleanup-action-workflows #7
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: Test the Action | |
on: | |
push: | |
branches: | |
- 'trunk' | |
- 'releases/*' | |
pull_request: | |
pull_request_review: | |
types: | |
- submitted | |
pull_request_review_comment: | |
types: | |
- created | |
- deleted | |
jobs: | |
# Tests that the Action works as expected. | |
# | |
# Performs the following steps: | |
# - Checks out the repository. | |
# - Runs the Action. | |
test: | |
name: Test the Action | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Run the Action | |
uses: ./ |