Skip to content

Commit

Permalink
node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
avkos committed Jul 17, 2023
1 parent c415698 commit f0f07b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- uses: actions/checkout@v2

- uses: actions/cache@v2
Expand All @@ -35,7 +35,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-node16-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node18-${{ hashFiles('**/package-lock.json') }}

- run: npm ci
if: steps.cache-deps.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- uses: actions/checkout@v2
- uses: browser-actions/setup-firefox@latest
if: matrix.testCmd == 'e2e_browsers'
Expand All @@ -97,7 +97,7 @@ jobs:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-node16-${{ hashFiles('**/package-lock.json') }}
key: ${{ runner.os }}-node18-${{ hashFiles('**/package-lock.json') }}

- run: npm ci
if: (env.TEST == 'unit_and_e2e_clients' || env.TEST == 'e2e_browsers') && steps.cache-deps.outputs.cache-hit != 'true'
Expand All @@ -118,7 +118,7 @@ jobs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18
- uses: actions/checkout@v2
- run: bash ./scripts/ci.sh
eth2:
Expand Down

0 comments on commit f0f07b9

Please sign in to comment.