Skip to content

chore(deps-dev): bump typescript from 5.1.6 to 5.2.2 in /docs (#333) #98

chore(deps-dev): bump typescript from 5.1.6 to 5.2.2 in /docs (#333)

chore(deps-dev): bump typescript from 5.1.6 to 5.2.2 in /docs (#333) #98

Workflow file for this run

name: deploy
on:
push:
paths:
- ".github/workflows/deploy.yaml"
- "docs/**"
branches:
- main
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v3
- name: ⚙️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: 📦 Install Dependencies
run: yarn install --frozen-lockfile
- name: ✨ Check Format
run: yarn run format:check
- name: 🧹 Lint
run: yarn run lint
- name: 👷 Build website
run: yarn build
- name: ☁️ Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./docs/build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com