Changeset 54650 for trunk/.github/workflows/test-npm.yml
- Timestamp:
- 10/19/2022 06:18:45 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/test-npm.yml
r54511 r54650 1 name: Test NPM1 name: Test npm 2 2 3 3 on: … … 16 16 - '[4-9].[0-9]' 17 17 paths: 18 # These files configure NPM. Changes could affect the outcome.18 # These files configure npm. Changes could affect the outcome. 19 19 - 'package*.json' 20 # JavaScript files are built using NPM.20 # JavaScript files are built using npm. 21 21 - '**.js' 22 # CSS and SCSS files are built using NPM.22 # CSS and SCSS files are built using npm. 23 23 - '**.scss' 24 24 - '**.css' … … 38 38 39 39 jobs: 40 # Verifies that installing NPMdependencies and building WordPress works as expected.40 # Verifies that installing npm dependencies and building WordPress works as expected. 41 41 # 42 42 # Performs the following steps: 43 43 # - Checks out the repository. 44 44 # - Logs debug information about the GitHub Action runner. 45 # - Installs Node JS.46 # _ Installs NPMdependencies.45 # - Installs Node.js. 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. … … 52 52 # - Ensures version-controlled files are not modified or deleted. 53 53 test-npm: 54 name: Test NPMon ${{ matrix.os }}54 name: Test npm on ${{ matrix.os }} 55 55 runs-on: ${{ matrix.os }} 56 56 timeout-minutes: 20 … … 73 73 svn --version 74 74 75 - name: Install Node JS75 - name: Install Node.js 76 76 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 77 77 with: … … 100 100 run: git diff --exit-code 101 101 102 # Verifies that installing NPMdependencies and building WordPress works as expected on MacOS.102 # Verifies that installing npm dependencies and building WordPress works as expected on MacOS. 103 103 # 104 104 # This is separate from the job above in order to use stricter conditions about when to run. … … 108 108 # - Checks out the repository. 109 109 # - Logs debug information about the GitHub Action runner. 110 # - Installs Node JS.111 # _ Installs NPMdependencies.110 # - Installs Node.js. 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. … … 117 117 # - Ensures version-controlled files are not modified or deleted. 118 118 test-npm-macos: 119 name: Test NPMon MacOS119 name: Test npm on MacOS 120 120 runs-on: macos-latest 121 121 timeout-minutes: 30 … … 133 133 svn --version 134 134 135 - name: Install Node JS135 - name: Install Node.js 136 136 uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3.5.1 137 137 with:
Note: See TracChangeset
for help on using the changeset viewer.