Skip to content

Commit 54391da

Browse files
authored
Fix SSR theming issues by forcing light mode styling for content pages (#4)
* Fix SSR theming issues by forcing light mode styling for content pages * Fix nav hover styles and ensure light mode colors for React Best Practices page content * Fix theming issues on React Best Practices page and nav hover styles * fix: Update CI workflow to use --no-frozen-lockfile
1 parent 49b874a commit 54391da

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/type-check.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,33 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
14+
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: '20'
19-
18+
node-version: "20"
19+
2020
- name: Install pnpm
2121
uses: pnpm/action-setup@v2
2222
with:
2323
version: 8
2424
run_install: false
25-
25+
2626
- name: Get pnpm store directory
2727
shell: bash
2828
run: |
2929
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
30-
30+
3131
- uses: actions/cache@v3
3232
name: Setup pnpm cache
3333
with:
3434
path: ${{ env.STORE_PATH }}
3535
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
3636
restore-keys: |
3737
${{ runner.os }}-pnpm-store-
38-
38+
3939
- name: Install dependencies
40-
run: pnpm install --frozen-lockfile
41-
40+
run: pnpm install --no-frozen-lockfile
41+
4242
- name: Type check
43-
run: pnpm type-check
43+
run: pnpm type-check

0 commit comments

Comments
 (0)