color-name-list 13.16.0 → 13.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,8 +19,12 @@ jobs:
19
19
  - name: Setup Node.js
20
20
  uses: actions/setup-node@v3
21
21
  with:
22
- node-version: 20
22
+ node-version: 23.x
23
23
  cache: 'npm'
24
+ - name: Use npm 11.6.0
25
+ run: |
26
+ corepack enable
27
+ corepack prepare npm@11.6.0 --activate
24
28
 
25
29
  - name: Install dependencies
26
30
  run: npm ci
@@ -21,8 +21,14 @@ jobs:
21
21
  with:
22
22
  node-version: ${{ matrix.node-version }}
23
23
  cache: 'npm'
24
- - run: npm ci
25
- - run: npm run build
24
+ - name: Install dependencies
25
+ run: npm ci
26
+ - name: Use npm 11.6.0
27
+ run: |
28
+ corepack enable
29
+ corepack prepare npm@11.6.0 --activate
30
+ - name: Build
31
+ run: npm run build
26
32
  - run: npm test
27
33
  - name: Check for changes
28
34
  id: git-check