Skip to content

Merge remote-tracking branch 'stripe/master' #87

Merge remote-tracking branch 'stripe/master'

Merge remote-tracking branch 'stripe/master' #87

Workflow file for this run

# name: Generate docs
# on:
# push:
# branches: [master]
# workflow_dispatch:
# jobs:
# generate-docs:
# name: generate-docs
# runs-on: ubuntu-24.04
# permissions:
# contents: read
# steps:
# - name: checkout
# uses: actions/checkout@v4
# - name: Get yarn cache directory path
# id: yarn-cache-dir-path
# run: echo "::set-output name=dir::$(yarn cache dir)"
# - uses: actions/cache@v4
# id: yarn-cache
# with:
# path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# restore-keys: |
# ${{ runner.os }}-yarn-
# - name: Setup Node.js environment
# uses: actions/setup-node@v4
# with:
# node-version-file: '.node-version'
# - name: Install Dependencies
# run: |
# yarn example && yarn
# - name: Build docs
# run: yarn docs
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.DOCS_GITHUB_SECRET }}
# publish_dir: ./docs
# commit_message: 'docs: update'
# force_orphan: true