build(deps): bump vike from 0.4.203 to 0.4.217 in /frontend #15875
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: root | |
on: push | |
jobs: | |
files-changed: | |
name: Detect File Changes | |
runs-on: ubuntu-latest | |
outputs: | |
docs: ${{ steps.filter.outputs.docs }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: filter | |
with: | |
filters: | | |
docs: | |
- '.github/workflows/**/*' | |
- '**/*.md' | |
- '.vuepress/*' | |
- 'package.json' | |
markdown: | |
if: needs.files-changed.outputs.docs == 'true' | |
name: Lint Markdown Files | |
needs: files-changed | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- run: npm install && npm run remark | |
docs: | |
if: needs.files-changed.outputs.docs == 'true' | |
name: Build Docs | |
needs: files-changed | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 | |
- run: npm install && npm run docs:build |