Changeset 54851 for trunk/.github/workflows/end-to-end-tests.yml
- Timestamp:
- 11/16/2022 07:32:57 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/end-to-end-tests.yml
r54674 r54851 36 36 # - Sets environment variables. 37 37 # - Checks out the repository. 38 # - Sets up Node.js. 38 39 # - Logs debug information about the GitHub Action runner. 39 # - Installs Node.js. 40 # _ Installs npm dependencies. 40 # - Installs npm dependencies. 41 41 # - Builds WordPress to run from the `build` directory. 42 42 # - Starts the WordPress Docker container. 43 # - Logs general debug information.44 43 # - Logs the running Docker containers. 45 44 # - Logs Docker debug information (about both the Docker installation within the runner and the WordPress container). … … 62 61 uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 63 62 63 - name: Set up Node.js 64 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 65 with: 66 node-version-file: '.nvmrc' 67 cache: npm 68 64 69 - name: Log debug information 65 70 run: | … … 69 74 git --version 70 75 svn --version 71 php --version72 php -i73 76 locale -a 74 77 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 78 - name: Install npm Dependencies 82 79 run: npm ci 83 80 … … 88 85 run: | 89 86 npm run env:start 90 91 - name: General debug information92 run: |93 npm --version94 node --version95 curl --version96 git --version97 svn --version98 87 99 88 - name: Log running Docker containers
Note: See TracChangeset
for help on using the changeset viewer.