Changeset 54851 for trunk/.github/workflows/test-npm.yml
- Timestamp:
- 11/16/2022 07:32:57 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-npm.yml
r54674 r54851 42 42 # Performs the following steps: 43 43 # - Checks out the repository. 44 # - Sets up Node.js. 44 45 # - Logs debug information about the GitHub Action runner. 45 # - Installs Node.js. 46 # _ Installs npm dependencies. 46 # - Installs npm dependencies. 47 47 # - Builds WordPress to run from the `build` directory. 48 48 # - Cleans up after building WordPress to the `build` directory. … … 65 65 uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 66 66 67 - name: Set up Node.js 68 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 69 with: 70 node-version-file: '.nvmrc' 71 cache: npm 72 67 73 - name: Log debug information 68 74 run: | … … 73 79 svn --version 74 80 75 - name: Install Node.js 76 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 77 with: 78 node-version-file: '.nvmrc' 79 cache: npm 80 81 - name: Install Dependencies 81 - name: Install npm Dependencies 82 82 run: npm ci 83 83 … … 107 107 # Performs the following steps: 108 108 # - Checks out the repository. 109 # - Sets up Node.js. 109 110 # - Logs debug information about the GitHub Action runner. 110 # - Installs Node.js. 111 # _ Installs npm dependencies. 111 # - Installs npm dependencies. 112 112 # - Builds WordPress to run from the `build` directory. 113 113 # - Cleans up after building WordPress to the `build` directory. … … 125 125 uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 126 126 127 - name: Set up Node.js 128 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 129 with: 130 node-version-file: '.nvmrc' 131 cache: npm 132 127 133 - name: Log debug information 128 134 run: | … … 133 139 svn --version 134 140 135 - name: Install Node.js 136 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 137 with: 138 node-version-file: '.nvmrc' 139 cache: npm 140 141 - name: Install Dependencies 141 - name: Install npm Dependencies 142 142 run: npm ci 143 143
Note: See TracChangeset
for help on using the changeset viewer.