Skip to content

Commit

Permalink
Merge pull request #469 from mcclowes/chore/test-spellcheck
Browse files Browse the repository at this point in the history
Spelling example
  • Loading branch information
mcclowes authored Dec 17, 2024
2 parents e0e303c + c073f2c commit 1a009c4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ jobs:
runs-on: ubuntu-latest

steps:
# Step 1: Checkout the repository
# Step 1: Checkout the repository with full history
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch full Git history

# Step 2: Install cspell
- name: Install cspell
Expand All @@ -23,7 +25,10 @@ jobs:
- name: List changed Markdown files
id: changed_files
run: |
echo "CHANGED_FILES=$(git diff --name-only ${{ github.event.pull_request.base.sha }} | grep '\.md$' | xargs)" >> $GITHUB_ENV
BASE_SHA=${{ github.event.pull_request.base.sha }}
echo "Comparing against base SHA: $BASE_SHA"
CHANGED_FILES=$(git diff --name-only $BASE_SHA | grep '\.md$' || echo "")
echo "CHANGED_FILES=$CHANGED_FILES" >> $GITHUB_ENV
# Step 4: Run spellcheck on changed files
- name: Run cspell
Expand All @@ -32,7 +37,7 @@ jobs:
echo "Files to check: $CHANGED_FILES"
cspell $CHANGED_FILES
# Step 5: Fail if errors are found
# Step 5: Verify results
- name: Verify results
if: failure()
run: |
Expand Down
2 changes: 1 addition & 1 deletion blog/2017-03-14-notebooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ A single idea formed in isolation is inherently limited; great original creation

### 5) A notebook is great for quality of life

On top of helping you stay organised and giving your brain a spring clean, preserving memories and your mind at a point in time is a massively important part of enjoying life. Somewhat philosophically, if you take the view that a life consists of your experiences and memories made, documenting your thoughts inherently gets you more out of life.
On top of helping you stay organized and giving your brain a spring clean, preserving memories and your mind at a point in time is a massively important part of enjoying life. Somewhat philosophically, if you take the view that a life consists of your experiences and memories made, documenting your thoughts inherently gets you more out of life.

These are just some of the reasons I carry a notebook at all times, and have done for around 7 years now. I recommend trying Moleskine Soft Underwater Blue Large Dotted Notebook if you are a visual person, or their Soft Large Underwater Blue Ruled Notebook if you prefer just writing.
2 changes: 1 addition & 1 deletion blog/2023-01-07-mlps.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Let’s consider a conceivable example:
### Usability matters

The user interface is simple and rudimentary. Early users find that the UI is inconsistent with the patterns they’re used to, especially those that use increasingly slick neo-bank offerings, and so they find making a payment confusing and slow, despite the product’s simplicity. A lack of icons, colours, and other visual richness means the signposting that helps first-time users just isn’t there.
The user interface is simple and rudimentary. Early users find that the UI is inconsistent with the patterns they’re used to, especially those that use increasingly slick neo-bank offerings, and so they find making a payment confusing and slow, despite the product’s simplicity. A lack of icons, colors, and other visual richness means the signposting that helps first-time users just isn’t there.

Copay PMs end up having to walk some high-value users through the app, and feedback is either compromised by these interventions or focuses on the fact the app is ugly and making payments was slow.

Expand Down
2 changes: 1 addition & 1 deletion blog/2024-06-02-product-led-orgs.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Using both of these devices had become so painful simply because of poor battery

![Test](/img/posts/product-led-neutral.jpeg)

The true balancing of these concerns is where the product led organisation lies.
The true balancing of these concerns is where the product led organization lies.
4 changes: 3 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"words": [
"Docusaurus",
"frontend",
"Codat" // Add project-specific words here
"Codat",
"mcclowes",
"Monzo",
],
"ignorePaths": [
"node_modules/**",
Expand Down

0 comments on commit 1a009c4

Please sign in to comment.