Skip to content

Commit 4704f3c

Browse files
authored
Merge pull request #17414 from IgniteUI/dkamburov/fix-stuck-pending-check-21.2
fix(ci): simplify Node.js setup by removing matrix strategy
2 parents 4b00b9b + 6c39e5f commit 4704f3c

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,13 @@ jobs:
1616

1717
runs-on: ubuntu-latest
1818

19-
strategy:
20-
matrix:
21-
node-version: [22.x]
22-
2319
steps:
2420
- name: Checkout
2521
uses: actions/checkout@v4
26-
- name: Use Node.js ${{ matrix.node-version }}
22+
- name: Use Node.js 22
2723
uses: actions/setup-node@v4
2824
with:
29-
node-version: ${{ matrix.node-version }}
25+
node-version: 22.x
3026
cache: 'npm'
3127
- name: Install packages
3228
run: npm ci

0 commit comments

Comments
 (0)