Skip to content

Commit 656b460

Browse files
committed
Configure github CI to use the node version set in .nvmrc, removes additional hardcoded nodejs version config, and makes it easier to upgrade nodejs in the future and to keep tests on dev machines and github CI running with same dependencies
1 parent 5d079e7 commit 656b460

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/setup-env/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
steps:
1919
- uses: actions/setup-node@master
2020
with:
21-
node-version: 20.20.0
21+
node-version: ".nvmrc"
2222

2323
- name: Set up Python 3.12
2424
uses: actions/setup-python@v5

.github/workflows/e2e-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-node@master
1717
with:
18-
node-version: 20.20.0
18+
node-version: ".nvmrc"
1919

2020
- name: Install dependencies
2121
run: |

.github/workflows/e2e-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-node@master
1717
with:
18-
node-version: 20.20.0
18+
node-version: ".nvmrc"
1919

2020
- name: Install dependencies
2121
run: |

0 commit comments

Comments
 (0)