Skip to content

Commit 7a491ea

Browse files
authored
fix: run linter checks properly (#400)
1 parent b7b9e13 commit 7a491ea

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- name: Install dependencies
2727
run: npm ci
2828
- name: Lint
29-
run: npm run textlint || printf "Run 'ddev textlint' locally to fix it.\n\n"
29+
run: npm run textlint || { printf "Run 'ddev textlint' locally to fix it.\n\n"; exit 1; }
3030
- name: Prettier
31-
run: npm run prettier || printf "\nRun 'ddev prettier' locally to fix it.\n\n"
31+
run: npm run prettier || { printf "\nRun 'ddev prettier' locally to fix it.\n\n"; exit 1; }
3232
- name: Install, build, and upload your site output
3333
uses: withastro/action@v2
3434
with:

src/content/blog/ddev-local-phpstorm-and-xdebug-debugging.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ categories:
1212
- Videos
1313
modifiedDate: 2025-07-21
1414
#modifiedComment: "Minor edits""
15-
1615
---
1716

1817
<div class="video-container">

src/content/blog/watch-new-windows-installer.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515

1616
Tired of those complex PowerShell scripts we used to provide to get DDEV running on Windows? The new GUI installer changes everything.
1717

18-
In [DDEV v1.24.7](https://github.com/ddev/ddev/releases/tag/v1.24.7) we've eliminated the complexity of Windows setup. What used to require a privileged PowerShell script and manual WSL2 configuration now takes just a few clicks.
18+
In [DDEV v1.24.7](https://github.com/ddev/ddev/releases/tag/v1.24.7) we've eliminated the complexity of Windows setup. What used to require a privileged PowerShell script and manual WSL2 configuration now takes just a few clicks.
1919

2020
## Why This Changes Everything for DDEV Users on Windows
2121

@@ -26,15 +26,16 @@ In [DDEV v1.24.7](https://github.com/ddev/ddev/releases/tag/v1.24.7) we've elimi
2626

2727
The new installer supports:
2828

29-
* WSL2 Docker-CE
30-
* WSL2 Docker Desktop and Rancher Desktop
31-
* Traditional Windows installation
29+
- WSL2 Docker-CE
30+
- WSL2 Docker Desktop and Rancher Desktop
31+
- Traditional Windows installation
3232

3333
## See It In Action
3434

3535
Watch me transform a fresh Windows machine into a fully functional DDEV development environment in about 10 minutes:
3636

3737
**What you'll see:**
38+
3839
- Starting from a Windows machine without WSL2
3940
- Complete WSL2 and Docker CE setup
4041
- DDEV installation and first project
@@ -54,6 +55,7 @@ This setup process is detailed in [Get Started - Windows](/get-started) and expl
5455
**Support the Project:** DDEV is fully open-source and free to use, and run by the nonprofit DDEV Foundation. We ask you to help make us a sustainable project by sponsoring yourself or getting your organization to sponsor the project. [Sponsor us on GitHub](https://github.com/sponsors/ddev).
5556

5657
Questions? Issues? We're here to help:
58+
5759
- 💬 [Contact our team](/contact)
5860
- 📖 [Simple installation docs](/get-started)
5961
- 📖 [Full installation docs](https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/#ddev-installation-windows)

0 commit comments

Comments
 (0)