Skip to content

Commit

Permalink
Install Node20 on test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovivona committed Jan 26, 2024
1 parent 83e78d2 commit c9e23d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/run-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn # Install all dependencies
- uses: ./
id: store-variables
Expand All @@ -29,6 +32,9 @@ jobs:
needs: run-integration-test1
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn # Install all dependencies
- uses: ./
with:
Expand All @@ -46,6 +52,9 @@ jobs:
needs: run-integration-test2
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn # Install all dependencies
- uses: ./
with:
Expand All @@ -63,6 +72,9 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: yarn # Install all dependencies
- uses: ./
with:
Expand Down

0 comments on commit c9e23d7

Please sign in to comment.