Skip to content

feat: allow skipping existing items #6

feat: allow skipping existing items

feat: allow skipping existing items #6

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Test docs
on:
pull_request:
branches:
- develop
paths:
- 'docs/**'
workflow_dispatch:
defaults:
run:
working-directory: ./docs/
jobs:
build:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build