File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy to GitHub Pages
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+
8+ jobs :
9+ build-and-deploy :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+
14+ - name : Set up Node.js
15+ uses : actions/setup-node@v4
16+ with :
17+ node-version : 18
18+
19+ - name : Install dependencies
20+ run : bun install
21+
22+ - name : Build
23+ run : bun run build
24+
25+ - name : Deploy
26+ run : bun run deploy
Original file line number Diff line number Diff line change @@ -47,6 +47,5 @@ Material UI: any library of React UI components that implements Google's Materia
4747## TASK LIST
4848Any new tasks will be added below for simplicity ranked by priority e.g. 1 (most important)... nth task (least important, n denoting # of tasks).
4949
50- 1 . Convert jsx files to tsx files
51- 2 . Combine new tsx (formerly jsx in task above) files with css files using TailwindCSS
52- 3 . Remove any unused Files/Components
50+ 1 . Combine new tsx (formerly jsx in task above) files with css files using TailwindCSS
51+ 2 . Remove any unused Files/Components
You can’t perform that action at this time.
0 commit comments