Changeset 57212 for trunk/.github/workflows/performance.yml
- Timestamp:
- 12/20/2023 06:44:57 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/performance.yml
r57197 r57212 72 72 # - Print performance tests results. 73 73 # - Check out target commit (target branch or previous commit). 74 # - Switch Node.js versions if necessary. 74 75 # - Install npm dependencies. 75 76 # - Build WordPress. … … 78 79 # - Print target performance tests results. 79 80 # - Reset to original commit. 81 # - Switch Node.js versions if necessary. 80 82 # - Install npm dependencies. 81 83 # - Set the environment to the baseline version. … … 191 193 git reset --hard $TARGET_SHA 192 194 195 - name: Set up Node.js 196 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 197 with: 198 node-version-file: '.nvmrc' 199 cache: npm 200 193 201 - name: Install npm dependencies 194 202 run: npm ci … … 212 220 - name: Reset to original commit 213 221 run: git reset --hard $GITHUB_SHA 222 223 - name: Set up Node.js 224 uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 225 with: 226 node-version-file: '.nvmrc' 227 cache: npm 214 228 215 229 - name: Install npm dependencies
Note: See TracChangeset
for help on using the changeset viewer.