Skip to content

Commit

Permalink
wip: github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
andorsk committed May 19, 2024
1 parent 771903e commit 16bfe92
Show file tree
Hide file tree
Showing 18 changed files with 319 additions and 192 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and Deploy

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build and Deploy React app to GitHub Pages
uses: omkartapale/[email protected]
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "web5-calendly",
"version": "0.1.0",
"private": true,
"homepage": "https://andorsk.github.io/web5-calendly",
"dependencies": {
"@reduxjs/toolkit": "^2.2.5",
"@testing-library/react": "^13.4.0",
Expand All @@ -25,7 +26,9 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
Expand All @@ -46,6 +49,7 @@
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0"
"@testing-library/jest-dom": "^5.17.0",
"tailwindcss": "^3.4.3"
}
}
Loading

0 comments on commit 16bfe92

Please sign in to comment.