Skip to content

build(deps-dev): bump linkify-it from 5.0.0 to 5.0.2 #22

build(deps-dev): bump linkify-it from 5.0.0 to 5.0.2

build(deps-dev): bump linkify-it from 5.0.0 to 5.0.2 #22

Workflow file for this run

name: build-docs
on:
release:
types: [created]
push:
branches:
- '**'
tags:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
cache: npm
- name: Setup Pages
uses: actions/configure-pages@v5
- run: npm install -g npm@11 --registry=https://registry.npmjs.org
- run: npm ci
- name: Build docs
run: npm run docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/build
deploy:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4