Skip to content

Feat/static ci #2756

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 5, 2025
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
17 changes: 17 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,26 @@ jobs:
with:
node-version: '18'

- name: Setup pnpm
run: |
npm install --global corepack@latest
corepack enable
corepack prepare pnpm@latest --activate
echo "$(pnpm bin --global)" >> $GITHUB_PATH

- name: Install dependencies
run: pnpm install

- name: Cache pnpm dependencies
uses: actions/cache@v3
with:
path: |
~/.pnpm-store
node_modules
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-

- name: Build documentation
run: pnpm run build:doc

Expand Down
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"files": {
"ignoreUnknown": true
"ignoreUnknown": true,
"include": ["./**/*.{js,jsx,ts,tsx,json,yml,yaml}"]
},
"vcs": {
"enabled": true,
Expand Down
1 change: 1 addition & 0 deletions docs/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ footer: Open-source MIT Licensed | Copyright © 2019-present<br />Powered by [du
- Contains a comprehensive collection of basic Hooks
- Written in TypeScript with predictable static types


## 📦 Install

```bash
Expand Down
Loading