feat: 일렉트론 화면을 데모용 웹으로 배포 #73
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: 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/ |