Skip to content

Test ARC Runner

Test ARC Runner #2

Workflow file for this run

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: '22'
- 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"