commit e2b78cee8902a75ec04ea0843e5eca3a2908d6ea Author: Felix Dürrwald Date: Fri May 31 16:07:05 2024 +0200 Initial commit diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7e52dfe --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +name: Deploy + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Build Stories + run: cd stories && npm install && npm run build + + - name: Deploy to Firebase + uses: w9jds/firebase-action@master + with: + args: deploy --only hosting + env: + FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} + PROJECT_ID: gui-challenges diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0da048a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +dist/ +node_modules/ +.DS_Store +.vscode diff --git a/README.md b/README.md new file mode 100644 index 0000000..ae81bf1 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ + + +# GUI Experiments + +I often come across a problem that needs some tinkering to solve. Or I find an interessting piece of information +on the web, that I want to try out. + +I tend to create 'experiments' for those, and I have decided to collect and share those experiments here. + + +