diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..0d1b462 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,23 @@ +on: + push: + branches: + - main + +jobs: + push_gh_pages: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Setup NodeJS + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install + run: | + yarn install + + - name: Build and Deploy + run: | + yarn build && yarn deploy diff --git a/.gitignore b/.gitignore index dad6938..f6a98f7 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,6 @@ vite.config.ts.timestamp-* .DS_Store # Personal project notes, not my reference. notes.md + +# Visual Studio +.vscode/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 5084052..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "recommendations": [ - "svelte.svelte-vscode", - "bradlc.vscode-tailwindcss" - ] -}