From e2b78cee8902a75ec04ea0843e5eca3a2908d6ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20D=C3=BCrrwald?= Date: Fri, 31 May 2024 16:07:05 +0200 Subject: [PATCH] Initial commit --- .github/workflows/main.yml | 23 +++++++++++++++++++++++ .gitignore | 4 ++++ README.md | 13 +++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .github/workflows/main.yml create mode 100644 .gitignore create mode 100644 README.md 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. + + +