feat(slack): add channel reaction feedback #12
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: example-image-tests | |
| on: | |
| pull_request: | |
| paths: | |
| - "images/examples/**" | |
| - ".github/workflows/example-image-tests.yml" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "images/examples/**" | |
| - ".github/workflows/example-image-tests.yml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Install example runtime dependencies | |
| working-directory: images/examples | |
| run: npm ci | |
| - name: Run example ACP runtime tests | |
| working-directory: images/examples | |
| run: npm test | |
| - name: Run OpenClaw entrypoint tests | |
| run: bash images/examples/openclaw/entrypoint_test.sh | |
| - name: Build OpenClaw example image | |
| run: docker build -f images/examples/openclaw/Dockerfile images |