Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added arc runner test #1911

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/arc-runner.yml
Original file line number Diff line number Diff line change
@@ -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'
emamihe marked this conversation as resolved.
Show resolved Hide resolved

- 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"
Loading