Skip to content

Commit cefdfd1

Browse files
committed
WIP
1 parent 8e3cf54 commit cefdfd1

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,22 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10+
node: [20.x]
1011
os: [ubuntu-latest] # (macos-latest, windows-latest) 3.x-dev is under development
1112
php: ["8.2", "8.3"]
1213
dependency-version: [prefer-lowest, prefer-stable]
1314
parallel: ["", "--parallel"]
1415

15-
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} - ${{ matrix.parallel }}
16+
name: PHP ${{ matrix.php }} - Node ${{ matrix.node }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} - ${{ matrix.parallel }}
1617

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

2127
- name: Setup PHP
2228
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)