feat: ChainExecutor 및 SortableStepItem 컴포넌트의 출력 타입 및 필드 설정 개선 #64
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: Test Workflow | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Test basic commands | |
| run: | | |
| echo "Repository: ${{ github.repository }}" | |
| echo "Branch: ${{ github.ref }}" | |
| echo "Event: ${{ github.event_name }}" | |
| ls -la | |
| - name: Check workflow files | |
| run: | | |
| echo "Checking workflow files:" | |
| ls -la .github/workflows/ |