Skip to content

Commit 3a26528

Browse files
chore: Changing node version missed during metro dependencies upgrade (#2015)
* Changing node version missed during metro dependencies upgrade * ci: use node 20 to run linter --------- Co-authored-by: Michał Pierzchała <thymikee@gmail.com>
1 parent 9eec6f9 commit 3a26528

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15-
- name: Use Node.js 18
15+
- name: Use Node.js 20
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: 18
18+
node-version: 20
1919
cache: yarn
2020
- name: Install dependencies
2121
run: yarn --frozen-lockfile
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
strategy:
2929
matrix:
30-
node-version: [18]
30+
node-version: [18, 20]
3131
steps:
3232
- uses: actions/checkout@v3
3333
- name: Use Node.js ${{ matrix.node-version }}
@@ -44,7 +44,7 @@ jobs:
4444
name: E2E Tests
4545
strategy:
4646
matrix:
47-
node-version: [18]
47+
node-version: [18, 20]
4848
os: [ubuntu-latest, macos-latest, windows-2019]
4949
runs-on: ${{ matrix.os }}
5050
steps:

0 commit comments

Comments
 (0)