Skip to content

docs: migrate remaining documentation #119

docs: migrate remaining documentation

docs: migrate remaining documentation #119

Workflow file for this run

name: Main
on: ["push", "pull_request"]
jobs:
build:
name: Build, test and eventually publish
runs-on: ubuntu-22.04
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 9.15.0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
registry-url: https://registry.npmjs.org
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Setup ESLint cache
uses: actions/cache@v4
with:
path: ./.eslintcache
key: ${{ runner.os }}-eslint-${{ hashFiles('**/pnpm-lock.yaml', '**/eslint.config.mjs') }}
- name: Lint
run: pnpm lint
- name: Build packages
run: pnpm build
- name: Build docs
run: pnpm docs:build
- name: Publish
if: startsWith(github.event.ref, 'refs/tags/v')
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx lerna publish from-package --yes
publish_release:
if: startsWith(github.event.ref, 'refs/tags/v')
name: Publish new release
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
- name: Extract changes
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}
- name: Publish release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body: ${{ steps.changelog.outputs.changes }}