Skip to content

Global refactor

Global refactor #369

Workflow file for this run

# This to verify lib version bump doesn't break anything
name: Building docs testing
on:
push:
branches:
- master
- main
pull_request:
branches:
- '**'
jobs:
publish-npm:
runs-on: ubuntu-latest
env:
PUBLIC_MEILISEARCH_KEY: ${{ secrets.PUBLIC_MEILISEARCH_KEY }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: git config --global user.name "GitHub CD bot"
- run: git config --global user.email "github-cd-bot@example.com"
- name: Install deps
run: npm i
- name: Sync changelog from CodeceptJS 4.x
run: npm run sync:changelog
- name: Generate unified API docs
run: npm run generate:unified-api
- name: Build docs
run: npm run build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}