Fix button rendering with Observable html template #51
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: Hello World Workflow | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| say-hello: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Say Hello | |
| run: | | |
| echo "Hello, World!" | |
| echo "Running on branch: ${{ github.ref_name }}" | |
| echo "Triggered by: ${{ github.event_name }}" |