Skip to content

Commit d2d2d67

Browse files
authored
🔧 Clean up Node.js references after migration to Bun (#841)
* 🔧 Remove Node.js setup from GitHub Actions workflow * 🔧 Update package.json script to use bun instead of node * 📝 Remove Node.js from prerequisites in README
1 parent 37828ae commit d2d2d67

3 files changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [ubuntu-latest]
29-
node: [22]
3029

31-
name: Build (Node ${{ matrix.node }} on ${{ matrix.os }})
30+
name: Build (Bun on ${{ matrix.os }})
3231

3332
# The type of runner that the job will run on
3433
runs-on: ${{ matrix.os }}
@@ -40,11 +39,6 @@ jobs:
4039
- name: 🛎 Checkout
4140
uses: actions/checkout@v4
4241

43-
- name: 🏗 Setup node
44-
uses: actions/setup-node@v4
45-
with:
46-
node-version: ${{ matrix.node }}
47-
4842
- name: 📦 Setup Bun
4943
uses: oven-sh/setup-bun@v2
5044
with:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ graph TB
6969

7070
### Prerequisites
7171

72-
- [Node.js v22+](https://nodejs.org/)
7372
- [Bun](https://bun.sh/)
7473
- [Docker](https://www.docker.com/) (for local database)
7574

apps/pages/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"format:js": "eslint --fix .",
1919
"format:prettier": "prettier . --write --ignore-path=../../.prettierignore",
2020
"format": "run-p format:*",
21-
"add-size-to-img": "node ./commands/add-size-to-img.js",
21+
"add-size-to-img": "bun ./commands/add-size-to-img.js",
2222
"clean-image": "./commands/clean-image.sh",
2323
"deploy": "./commands/deploy.sh"
2424
},

0 commit comments

Comments
 (0)