Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lwwcas committed Oct 27, 2024
1 parent 7d44dad commit 4b3790d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2,268 deletions.
Binary file modified .DS_Store
Binary file not shown.
9 changes: 8 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,19 @@ jobs:
with:
node-version: 20
cache: npm # or pnpm / yarn

- name: Clean up node_modules and package-lock.json
run: rm -rf package-lock.json node_modules

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Install dependencies
run: npm ci --omit=optional --legacy-peer-deps # or pnpm install / yarn install / bun install
run: npm ci --ignore-scripts --omit=optional --legacy-peer-deps # or pnpm install / yarn install / bun install

- name: Build with VitePress
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ composer.lock
vendor
coverage
node_modules
package-lock.json
Loading

0 comments on commit 4b3790d

Please sign in to comment.