From a4f5af0dc285a648c640eec8b09c5c37d69ca61c Mon Sep 17 00:00:00 2001 From: Hamid Emamian Date: Mon, 21 Oct 2024 12:56:04 +0300 Subject: [PATCH] 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"