Skip to content

fix: replace list(set()) with list(dict.fromkeys()) #12

fix: replace list(set()) with list(dict.fromkeys())

fix: replace list(set()) with list(dict.fromkeys()) #12

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
run: |
cd docs
npm install -g pnpm
pnpm install
pnpm run docs:build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.7
with:
branch: gh-pages
folder: docs/.vitepress/dist