Skip to content

Commit feaa44b

Browse files
committed
react version 19 support
1 parent af18832 commit feaa44b

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/nodejs.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [12.x]
11+
node-version: [16.x]
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v4
1515

1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v3
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020

@@ -30,16 +30,15 @@ jobs:
3030

3131
e2e:
3232
runs-on: ubuntu-latest
33-
3433
strategy:
3534
matrix:
36-
node-version: [12.x]
35+
node-version: [16.x]
3736

3837
steps:
39-
- uses: actions/checkout@v1
38+
- uses: actions/checkout@v4
4039

4140
- name: Use Node.js ${{ matrix.node-version }}
42-
uses: actions/setup-node@v1
41+
uses: actions/setup-node@v3
4342
with:
4443
node-version: ${{ matrix.node-version }}
4544

@@ -61,12 +60,9 @@ jobs:
6160
npm install
6261
env:
6362
CI: true
64-
REACT_APP_PUBLIC_KEY: ${{ secrets.ik_public_key }}
65-
REACT_APP_PRIVATE_KEY: ${{ secrets.ik_private_key }}
66-
REACT_APP_URL_ENDPOINT: ${{ secrets.ik_url_endopint }}
6763

6864
- name: Run E2E tests
69-
uses: cypress-io/github-action@v4
65+
uses: cypress-io/github-action@v5
7066
with:
7167
start: npm run serve:test-app
7268
wait-on: 'http://localhost:4000, http://localhost:4001'

0 commit comments

Comments
 (0)