From 2fda8850a4006ef5dcfe4bf7c54dce9edd8e1f24 Mon Sep 17 00:00:00 2001 From: Jag Jayaprakash Date: Tue, 1 Oct 2024 16:06:19 -0700 Subject: [PATCH] NEW (Extension) @W-16812379@ Add production heartbeat test - 2 --- .github/workflows/production-heartbeat.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/production-heartbeat.yml b/.github/workflows/production-heartbeat.yml index da08eac..301cc71 100644 --- a/.github/workflows/production-heartbeat.yml +++ b/.github/workflows/production-heartbeat.yml @@ -17,4 +17,17 @@ jobs: os: [{vm: ubuntu-latest, exe: .sh}, {vm: windows-2019, exe: .cmd}] node: ['lts/*'] runs-on: ${{ matrix.os.vm }} - timeout-minutes: 60 \ No newline at end of file + timeout-minutes: 60 + steps: + # === Setup. We need to get the code, set up nodejs, and create the results directory. === + - uses: actions/checkout@v4 + with: + ref: 'release' + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node }} + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '11' + - run: mkdir smoke-test-results \ No newline at end of file