Bump the apollo-server group in /backend with 3 updates #2282
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ocelot.social check documentation | |
on: push | |
jobs: | |
files-changed: | |
name: Detect File Changes - Markdown files | |
runs-on: ubuntu-latest | |
outputs: | |
markdown: ${{ steps.changes.outputs.markdown }} | |
documentation: ${{ steps.changes.outputs.documentation }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- name: Check for markdown file changes | |
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
token: ${{ github.token }} | |
filters: .github/file-filters.yml | |
list-files: shell | |
check-markdown-links: | |
name: Check Markdown links | |
needs: files-changed | |
runs-on: ubuntu-latest | |
if: needs.files-changed.outputs.markdown == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- name: Remove old documentation files | |
run: rm -rf ./deployment/src/old/ ./CHANGELOG.md # workaround until https://github.com/gaurav-nelson/github-action-markdown-link-check/pull/183 has been done | |
- name: Check Markdown Links | |
uses: gaurav-nelson/github-action-markdown-link-check@7d83e59a57f3c201c76eed3d33dff64ec4452d27 # 1.0.15 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'no' | |
# at any .md file change take the chance to check the links in all .md files | |
check-modified-files-only: 'no' | |
config-file: '.github/workflows/mlc_config.json' | |
base-branch: 'master' | |
folder-path: '.' | |
test-vuepress-build: | |
name: Test Vuepress build | |
needs: files-changed | |
runs-on: ubuntu-latest | |
if: needs.files-changed.outputs.documentation == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- name: Setup Node 20 | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.0.3 | |
with: | |
node-version: '20' | |
- name: npm-install | |
run: npm install | |
- name: npm-docs:build | |
run: npm run docs:build |