Skip to content

Commit e873f02

Browse files
Updated GitHub Actions
1 parent 33114a0 commit e873f02

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/react.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [macos-latest, ubuntu-latest, windows-latest]
16+
node-version: ['18.x', '20.x']
1617

1718
steps:
1819
- name: Checkout source Git branch
1920
uses: actions/checkout@v4
21+
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: ${{ matrix.node-version }}
2026

2127
- name: Install Dependencies
2228
run: npm install

0 commit comments

Comments
 (0)