Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install pnpm
run: npm install -g pnpm
node-version: "22"
- name: Install dependencies
run: pnpm install
run: npm ci
- name: Check formatting and linting
run: pnpm check
run: npm run check
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ multi-ssh is an electron app
## Commands

```bash
pnpm start # Start the whole application
npm run start # Start the whole application
```
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ hosts:
### Commands

```bash
pnpm start # Development Mode
pnpm build # Building the Application
pnpm dist # Creating Distribution Package
npm run start # Development Mode
npm run build # Building the Application
npm run dist # Creating Distribution Package
```

### Project Structure
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
"root": true,
"vcs": {
"enabled": true,
Expand Down
Loading