Skip to content

Changed delay for whait methods #16

Changed delay for whait methods

Changed delay for whait methods #16

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- develop
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Build packages
run: yarn build:all
- name: Build documentation
run: yarn build:docs
# Deploy to GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs