From a4f5af0dc285a648c640eec8b09c5c37d69ca61c Mon Sep 17 00:00:00 2001 From: Hamid Emamian Date: Mon, 21 Oct 2024 12:56:04 +0300 Subject: [PATCH 1/2] added arc runner test --- .github/workflows/arc-runner.yml | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/arc-runner.yml diff --git a/.github/workflows/arc-runner.yml b/.github/workflows/arc-runner.yml new file mode 100644 index 000000000..e862ae330 --- /dev/null +++ b/.github/workflows/arc-runner.yml @@ -0,0 +1,33 @@ +name: Test ARC Runner + +on: + workflow_dispatch: + +jobs: + test-arc-runner: + runs-on: zombienet-arc-runner + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Node.js environment + uses: actions/setup-node@v3 + with: + node-version: '16' + + - name: Install dependencies + run: npm install + + - name: Run tests + run: npm test + + - name: Upload test results + if: always() + uses: actions/upload-artifact@v3 + with: + name: test-results + path: ./test-results/ + + - name: Notify on completion + if: always() + run: echo "Test completed on zombienet-arc-runner" From 9f9fdecf19338dde5a2fedfe498ac00a9b4bb59d Mon Sep 17 00:00:00 2001 From: Hamid Emamian Date: Mon, 21 Oct 2024 14:12:36 +0300 Subject: [PATCH 2/2] bumped version --- .github/workflows/arc-runner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/arc-runner.yml b/.github/workflows/arc-runner.yml index e862ae330..f5607a15e 100644 --- a/.github/workflows/arc-runner.yml +++ b/.github/workflows/arc-runner.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Node.js environment uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '22' - name: Install dependencies run: npm install