Skip to content

feat: add toast notifications and update README #15

feat: add toast notifications and update README

feat: add toast notifications and update README #15

Workflow file for this run

name: Hello World Test
# Dieser Workflow läuft bei jedem Push auf main
on:
push:
branches:
- main
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Say Hello
run: |
echo "🎉 Hello from GitHub Actions!"
echo "Repo: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
echo "Commit: ${{ github.sha }}"