Update dependency @libp2p/websockets to v7 #793
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'src/**' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'src/**' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'latest' | |
cache: 'pnpm' | |
- run: cd docu && pnpm install | |
- run: cd docu/scripts/images && pnpm install | |
- run: cd docu && pnpm build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docu/src/.vitepress/dist | |
cname: docu.xn--rseau-constellation-bzb.ca |