Changeset 54851 for trunk/.github/workflows/phpunit-tests.yml
- Timestamp:
- 11/16/2022 07:32:57 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r54674 r54851 37 37 # Performs the following steps: 38 38 # - Sets environment variables. 39 # - Sets up the environment variables needed for testing with memcached (if desired). 40 # - Installs Node.js. 39 # - Checks out the repository. 40 # - Sets up Node.js. 41 # - Logs general debug information about the runner. 41 42 # - Installs npm dependencies 42 43 # - Configures caching for Composer. … … 44 45 # - Logs Docker debug information (about the Docker installation within the runner). 45 46 # - Starts the WordPress Docker container. 46 # - Logs general debug information about the runner.47 47 # - Logs the running Docker containers. 48 # - Logs debug information from inside the WordPress Docker container.49 48 # - Logs debug information about what's installed within the WordPress Docker containers. 50 49 # - Install WordPress within the Docker container. … … 52 51 # - Ensures version-controlled files are not modified or deleted. 53 52 # - Checks out the WordPress Test reporter repository. 54 # - Reconnect the directory to the Git repository.55 53 # - Submit the test results to the WordPress.org host test results. 56 54 test-php: … … 109 107 uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 110 108 111 - name: InstallNode.js109 - name: Set up Node.js 112 110 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 113 111 with: … … 115 113 cache: npm 116 114 117 - name: Install Dependencies 115 - name: General debug information 116 run: | 117 npm --version 118 node --version 119 curl --version 120 git --version 121 svn --version 122 123 - name: Install npm dependencies 118 124 run: npm ci 119 125 … … 155 161 run: | 156 162 npm run env:start 157 158 - name: General debug information159 run: |160 npm --version161 node --version162 curl --version163 git --version164 svn --version165 163 166 164 - name: Log running Docker containers
Note: See TracChangeset
for help on using the changeset viewer.