Skip to content

Commit b0a32d7

Browse files
committed
Merge branch '2-todo-for-the-first-version'
2 parents 4596914 + 0d613d5 commit b0a32d7

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

.github/workflows/deploy.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
workflow_dispatch:
77

88
permissions:
@@ -15,19 +15,18 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
19-
- name: Setup Node.js
20-
uses: actions/setup-node@v4
18+
19+
- name: Setup Bun
20+
uses: oven-sh/setup-bun@v1
2121
with:
22-
node-version: '20'
23-
cache: 'npm'
24-
22+
bun-version: latest
23+
2524
- name: Install dependencies
26-
run: npm ci
27-
25+
run: bun install
26+
2827
- name: Build site
29-
run: npm run build
30-
28+
run: bun run build
29+
3130
- name: Upload artifact
3231
uses: actions/upload-pages-artifact@v3
3332
with:
@@ -42,4 +41,4 @@ jobs:
4241
steps:
4342
- name: Deploy to GitHub Pages
4443
id: deployment
45-
uses: actions/deploy-pages@v4
44+
uses: actions/deploy-pages@v4

src/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import {
2121
BsChatDotsFill,
2222
BsCalendarEventFill,
2323
BsGeo,
24-
BsPalette2,
2524
BsChevronDown
2625
} from 'solid-icons/bs';
2726
import { Logo } from "./components/Logo";

0 commit comments

Comments
 (0)