All checks were successful
Test CI / test (pull_request) Successful in 12s
Tests the custom runner image with Node.js and tools: - actions/checkout@v4 (requires Node.js) - Tool verification: node, npm, git, make, gcc, docker, curl, jq Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1,007 B
YAML
44 lines
1,007 B
YAML
name: Test CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Verify tools
|
|
run: |
|
|
echo "=== Node.js ==="
|
|
node --version
|
|
npm --version
|
|
echo ""
|
|
echo "=== Git ==="
|
|
git --version
|
|
echo ""
|
|
echo "=== Build tools ==="
|
|
make --version | head -1
|
|
gcc --version | head -1
|
|
echo ""
|
|
echo "=== Docker ==="
|
|
docker --version
|
|
echo ""
|
|
echo "=== Other tools ==="
|
|
curl --version | head -1
|
|
jq --version
|
|
|
|
- name: Show repo info
|
|
run: |
|
|
echo "Repository: ${{ github.repository }}"
|
|
echo "Event: ${{ github.event_name }}"
|
|
echo "Ref: ${{ github.ref }}"
|
|
echo "Branch: ${{ github.ref_name }}"
|
|
echo ""
|
|
echo "=== Files ==="
|
|
ls -la
|