Skip to content

ci(deps): update actions/checkout digest to eef6144 #2449

ci(deps): update actions/checkout digest to eef6144

ci(deps): update actions/checkout digest to eef6144 #2449

Workflow file for this run

name: Docs
on:
push:
branches:
- 'main'
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 16.x
- name: Get npm cache directory
id: npm-cache
run: |
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- name: Setup npm cache
uses: actions/cache@v4
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm ci || npm install
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: true
- name: Build API-Docs
run: npm run docs:build
continue-on-error: true
- name: Deploy API-Docs
uses: peaceiris/actions-gh-pages@v4
continue-on-error: true
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs