Changeset 53595 for branches/6.0/.github/workflows/test-npm.yml
- Timestamp:
- 06/30/2022 04:24:58 PM (3 years ago)
- Location:
- branches/6.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.0
- Property svn:mergeinfo changed
/trunk merged: 53581-53582,53592
- Property svn:mergeinfo changed
-
branches/6.0/.github/workflows/test-npm.yml
r53112 r53595 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. … … 60 60 steps: 61 61 - name: Checkout repository 62 uses: actions/checkout@ ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.062 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 63 63 64 64 - name: Log debug information … … 71 71 72 72 - name: Install NodeJS 73 uses: actions/setup-node@ 5b52f097d36d4b0b2f94ed6de710023fbb8b2236 # v3.1.073 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 74 74 with: 75 75 node-version-file: '.nvmrc' … … 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. … … 119 120 steps: 120 121 - name: Checkout repository 121 uses: actions/checkout@ ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.4.0122 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 122 123 123 124 - name: Log debug information … … 130 131 131 132 - name: Install NodeJS 132 uses: actions/setup-node@ 5b52f097d36d4b0b2f94ed6de710023fbb8b2236 # v3.1.0133 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 133 134 with: 134 135 node-version-file: '.nvmrc'
Note: See TracChangeset
for help on using the changeset viewer.