Skip to content

Commit ea38659

Browse files
committed
fix: update node version (v16 => v18)
1 parent 6d26da1 commit ea38659

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

.github/workflows/expo-build-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v2
2727
- uses: actions/setup-node@v2
2828
with:
29-
node-version: 16.x
29+
node-version: 18.x
3030

3131
- uses: expo/expo-github-action@v8
3232
with:
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions/checkout@v2
6262
- uses: actions/setup-node@v2
6363
with:
64-
node-version: 16.x
64+
node-version: 18.x
6565

6666
- uses: expo/expo-github-action@v8
6767
with:

.github/workflows/expo-publish-develop.yml

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

4141
- uses: actions/setup-node@v2
4242
with:
43-
node-version: 16.x
43+
node-version: 18.x
4444

4545
- uses: expo/expo-github-action@v8
4646
with:

.github/workflows/expo-publish-preprod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v2
4242
- uses: actions/setup-node@v2
4343
with:
44-
node-version: 16.x
44+
node-version: 18.x
4545

4646
- uses: expo/expo-github-action@v8
4747
with:

.github/workflows/expo-publish-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-node@v2
1919
with:
20-
node-version: 16.x
20+
node-version: 18.x
2121

2222
- uses: expo/expo-github-action@v8
2323
with:
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v2
4545
- uses: actions/setup-node@v2
4646
with:
47-
node-version: 16.x
47+
node-version: 18.x
4848

4949
- uses: expo/expo-github-action@v8
5050
with:

.github/workflows/mobile-tests.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,17 @@ jobs:
1212
MATOMO_ENABLED: false
1313
MATOMO_URL: https://matomo.fabrique.social.gouv.fr/
1414
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v2
1517

16-
- name: Checkout repository
17-
uses: actions/checkout@v2
18-
19-
- uses: actions/setup-node@v3
20-
with:
21-
node-version: 16
18+
- uses: actions/setup-node@v3
19+
with:
20+
node-version: 18
2221

23-
- name: Run tests
24-
env:
25-
YARN_IGNORE_NODE: "1"
26-
run: |
22+
- name: Run tests
23+
env:
24+
YARN_IGNORE_NODE: "1"
25+
run: |
2726
cd front
2827
yarn install
2928
yarn test

0 commit comments

Comments
 (0)