Changeset 53592
- Timestamp:
- 06/30/2022 03:07:49 PM (3 years ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/coding-standards.yml
r53582 r53592 116 116 # Performs the following steps: 117 117 # - Checks out the repository. 118 # - Logs debug information about the runner container.119 # - Installs NodeJS 14.118 # - Logs debug information about the GitHub Action runner. 119 # - Installs NodeJS. 120 120 # - Logs updated debug information. 121 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.121 # _ Installs NPM dependencies. 122 122 # - Run the WordPress JSHint checks. 123 123 # - Ensures version-controlled files are not modified or deleted. -
trunk/.github/workflows/end-to-end-tests.yml
r53581 r53592 2 2 3 3 on: 4 # The end toend test suite was introduced in WordPress 5.3.4 # The end-to-end test suite was introduced in WordPress 5.3. 5 5 push: 6 6 branches: … … 32 32 # 33 33 # Performs the following steps: 34 # - Set environment variables.34 # - Sets environment variables. 35 35 # - Checks out the repository. 36 # - Logs debug information about the runner container.37 # - Installs NodeJS 14.38 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.36 # - Logs debug information about the GitHub Action runner. 37 # - Installs NodeJS. 38 # _ Installs NPM dependencies. 39 39 # - Builds WordPress to run from the `build` directory. 40 40 # - Starts the WordPress Docker container. -
trunk/.github/workflows/javascript-tests.yml
r53581 r53592 43 43 # Performs the following steps: 44 44 # - Checks out the repository. 45 # - Logs debug information about the runner container.46 # - Installs NodeJS 14.45 # - Logs debug information about the GitHub Action runner. 46 # - Installs NodeJS. 47 47 # - Logs updated debug information. 48 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.48 # _ Installs NPM dependencies. 49 49 # - Run the WordPress QUnit tests. 50 50 # - Ensures version-controlled files are not modified or deleted. -
trunk/.github/workflows/phpunit-tests.yml
r53582 r53592 39 39 # 40 40 # Performs the following steps: 41 # - Set environment variables.41 # - Sets environment variables. 42 42 # - Sets up the environment variables needed for testing with memcached (if desired). 43 # - Installs NodeJS 14.43 # - Installs NodeJS. 44 44 # - Installs NPM dependencies 45 45 # - Configures caching for Composer. 46 # - Installs Composer dependencies (if desired).47 # - Logs Docker debug information (about boththe Docker installation within the runner).46 # - Installs Composer dependencies. 47 # - Logs Docker debug information (about the Docker installation within the runner). 48 48 # - Starts the WordPress Docker container. 49 # - Starts the memcached server after the Docker network has been created (if desired). 50 # - Logs WordPress Docker container debug information. 51 # - Logs debug general information. 49 # - Starts the Memcached server after the Docker network has been created (if desired). 50 # - Logs general debug information about the runner. 52 51 # - Logs the running Docker containers. 52 # - Logs debug information from inside the WordPress Docker container. 53 53 # - Logs debug information about what's installed within the WordPress Docker containers. 54 54 # - Install WordPress within the Docker container. -
trunk/.github/workflows/slack-notifications.yml
r53591 r53592 38 38 # Performs the following steps: 39 39 # - Retrieves the current workflow run. 40 # - Determine the conclusion of the previous workflow run or run attempt.40 # - Determines the conclusion of the previous workflow run or run attempt. 41 41 # - Sets the previous conclusion as an output. 42 42 # - Prepares the commit message. -
trunk/.github/workflows/test-coverage.yml
r53582 r53592 36 36 # 37 37 # Performs the following steps: 38 # - Set environment variables.38 # - Sets environment variables. 39 39 # - Checks out the repository. 40 40 # - Checks out the WordPress Importer plugin (needed for the Core PHPUnit tests). 41 # - Logs debug information about the runner container.42 # - Installs NodeJS 14.43 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.41 # - Logs debug information about the GitHub Action runner. 42 # - Installs NodeJS. 43 # _ Installs NPM dependencies. 44 44 # - Logs Docker debug information (about the Docker installation within the runner). 45 45 # - Starts the WordPress Docker container. -
trunk/.github/workflows/test-npm.yml
r53581 r53592 39 39 # Performs the following steps: 40 40 # - Checks out the repository. 41 # - Logs debug information about the runner container.42 # - Installs NodeJS 14.43 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.41 # - Logs debug information about the GitHub Action runner. 42 # - Installs NodeJS. 43 # _ Installs NPM dependencies. 44 44 # - Builds WordPress to run from the `build` directory. 45 45 # - Cleans up after building WordPress to the `build` directory. … … 99 99 # Verifies that installing NPM dependencies and building WordPress works as expected on MacOS. 100 100 # 101 # This is a separate job in order to that more strict conditions can be used. 101 # This is separate from the job above in order to use stricter conditions about when to run. 102 # This avoids unintentionally consuming excessive minutes, as MacOS jobs consume minutes at a 10x rate. 102 103 # 103 104 # Performs the following steps: 104 105 # - Checks out the repository. 105 # - Logs debug information about the runner container.106 # - Installs NodeJS 14.107 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.106 # - Logs debug information about the GitHub Action runner. 107 # - Installs NodeJS. 108 # _ Installs NPM dependencies. 108 109 # - Builds WordPress to run from the `build` directory. 109 110 # - Cleans up after building WordPress to the `build` directory.
Note: See TracChangeset
for help on using the changeset viewer.