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
15 changes: 15 additions & 0 deletions .cspell.config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: '0.2'
dictionaries:
- custom-dictionary
useGitignore: true
ignorePaths:
- .git
- _raw_assets
- '*.svg'
- node_modules
- pnpm-lock.yaml
dictionaryDefinitions:
- name: custom-dictionary
path: ./.cspell/custom-dictionary.txt
addWords: true
minRandomLength: 22
14 changes: 0 additions & 14 deletions .cspell.json

This file was deleted.

10 changes: 4 additions & 6 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Setup Node, PNPM, and Corepack
uses: streetsidesoftware/actions/public/setup-node-pnpm-corepack@v1

- name: Install dependencies
run: npm i
run: pnpm i
- name: Build website
run: npm run build
run: pnpm run build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Setup Node, PNPM, and Corepack
uses: streetsidesoftware/actions/public/setup-node-pnpm-corepack@v1

- name: Install dependencies
run: npm i
run: pnpm i

- name: Lint
run: npm run lint
run: pnpm run lint
12 changes: 5 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Setup Node, PNPM, and Corepack
uses: streetsidesoftware/actions/public/setup-node-pnpm-corepack@v1

- name: Install dependencies
run: npm i
- name: Build website
run: npm run build
run: pnpm i
- name: Test
run: pnpm t
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules
package-lock.json
website/.docusaurus
website/build
pnpm-lock.yaml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ https://www.streetsidesoftware.com
## Run locally

```sh
npm run start
pnpm run start
```

## Resources
Expand Down
Loading
Loading