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 Bun
20+ run : |
21+ curl -fsSL https://bun.sh/install | bash
22+ export BUN_INSTALL="$HOME/.bun"
23+ export PATH="$BUN_INSTALL/bin:$PATH"
24+ echo 'export BUN_INSTALL="$HOME/.bun"' >> $GITHUB_ENV
25+ echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> $GITHUB_ENV
26+
27+ - name : Install dependencies
28+ run : bun install
29+
30+ - name : Build
31+ run : bun run build
32+
33+ - name : Deploy
34+ 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