Skip to content

Commit

Permalink
Updating node version in GitHub flows
Browse files Browse the repository at this point in the history
  • Loading branch information
carlyrichmond committed Oct 18, 2024
1 parent b8c9dc8 commit 925a977
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-build-test-synthetics-replicator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
SYNTHETICS_JUNIT_FILE: junit-synthetics.xml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm start &
- run: "npm install @elastic/synthetics && npx @elastic/synthetics . --reporter=junit"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push-build-test-synthetics-replicator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
SYNTHETICS_JUNIT_FILE: junit-synthetics.xml
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm ci
- run: npm start &
- run: "npm install @elastic/synthetics && npx @elastic/synthetics . --reporter=junit"
Expand All @@ -37,9 +37,9 @@ jobs:
working-directory: ./apps/synthetics-replicator-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- run: npm ci
- run: npm run push

0 comments on commit 925a977

Please sign in to comment.