Skip to content

chore(extractor): temporarily disable type checking #455

chore(extractor): temporarily disable type checking

chore(extractor): temporarily disable type checking #455

Workflow file for this run

name: Docs Deployment
on:
workflow_dispatch:
push:
branches:
- '*'
- '!docs'
- '!gh-pages'
tags:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Install Node v18
uses: actions/setup-node@master
with:
node-version: 18
- name: Cache yarn
uses: actions/cache@v3
with:
path: .yarn/cache
key: docs-yarn-cache-node-18
- name: Install dependencies
run: yarn install --immutable
- name: Build packages
run: yarn build
- name: Build and deploy documentation
uses: discordjs/action-docs@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}