Skip to content

build(deps): bump axios, gatsby, gatsby-plugin-canonical-urls, gatsby-plugin-catch-links, gatsby-plugin-emotion, gatsby-plugin-manifest, gatsby-plugin-mdx, gatsby-plugin-offline, gatsby-plugin-react-helmet, gatsby-plugin-sharp, gatsby-plugin-sitemap, gatsby-remark-autolink-headers, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-remark-responsive-iframe, gatsby-source-filesystem, gatsby-transformer-remark, gatsby-transformer-sharp and gatsby-transformer-yaml in /docs #2269

build(deps): bump axios, gatsby, gatsby-plugin-canonical-urls, gatsby-plugin-catch-links, gatsby-plugin-emotion, gatsby-plugin-manifest, gatsby-plugin-mdx, gatsby-plugin-offline, gatsby-plugin-react-helmet, gatsby-plugin-sharp, gatsby-plugin-sitemap, gatsby-remark-autolink-headers, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-remark-responsive-iframe, gatsby-source-filesystem, gatsby-transformer-remark, gatsby-transformer-sharp and gatsby-transformer-yaml in /docs

build(deps): bump axios, gatsby, gatsby-plugin-canonical-urls, gatsby-plugin-catch-links, gatsby-plugin-emotion, gatsby-plugin-manifest, gatsby-plugin-mdx, gatsby-plugin-offline, gatsby-plugin-react-helmet, gatsby-plugin-sharp, gatsby-plugin-sitemap, gatsby-remark-autolink-headers, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-remark-responsive-iframe, gatsby-source-filesystem, gatsby-transformer-remark, gatsby-transformer-sharp and gatsby-transformer-yaml in /docs #2269

name: Check Documentation
on:
pull_request:
jobs:
doc:
name: Build documentation
runs-on: ubuntu-latest
env:
# https://github.com/actions/setup-go#supported-version-syntax
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
NODE_VERSION: '20.x'
CGO_ENABLED: 0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: docs/package-lock.json
- run: go mod download
- run: npm install --legacy-peer-deps
working-directory: ./docs
- name: Build Documentation
run: npm run build
working-directory: ./docs