helpyourneighbour/.github/workflows/docker-test.yml
OpenClaw 153ac243d0
Some checks are pending
Docker Test / test (push) Waiting to run
fix(#9): Implement CI-Workflow for Docker tests on push and PR
2026-03-06 21:51:38 +00:00

23 lines
No EOL
416 B
YAML

name: Docker Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Docker image
run: |
docker build -f Dockerfile.test -t test-image .
- name: Run tests in container
run: |
docker run --rm test-image npm test