[ES] Fix accent mark in Bespoke music graph image
#59203
Workflow file for this run
This file contains hidden or 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: osu-wiki continuous integration | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - edited | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| name: changed files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: create master branch from remote master | |
| run: git branch master origin/master | |
| - name: set up Node.js | |
| id: setup-node | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: npm | |
| node-version: 20 | |
| - name: load node_modules from cache | |
| id: cache-node-modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: node_modules | |
| key: node-modules-${{ hashFiles('package-lock.json') }}-${{ steps.setup-node.outputs.node-version }} | |
| - name: "if cache is outdated: install node.js dependencies" | |
| if: ${{ steps.cache-node-modules.outputs.cache-hit != 'true' }} | |
| run: npm ci | |
| - name: Install package manager (Python) | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install dependencies (Python) | |
| run: uv sync | |
| - name: detect changed files | |
| id: detect-changed-files | |
| run: | | |
| changed_files="$(mktemp)" | |
| git diff --diff-filter=d --name-only --no-renames -z master >"$changed_files" | |
| printf 'CHANGED_FILES=%s\n' "$changed_files" >>"$GITHUB_ENV" | |
| - name: check file sizes | |
| if: ${{ !cancelled() && steps.detect-changed-files.outcome == 'success' }} | |
| run: xargs -0r meta/check-file-sizes.sh <"$CHANGED_FILES" | |
| - name: run remark on changed files | |
| if: ${{ !cancelled() && steps.detect-changed-files.outcome == 'success' }} | |
| continue-on-error: ${{ contains(github.event.pull_request.body, 'SKIP_REMARK') }} | |
| run: | | |
| grep -z '\.md$' <"$CHANGED_FILES" | \ | |
| REPORTER=vfile-reporter-github-action xargs -0r meta/remark.sh | |
| - name: run yamllint on .yaml and .md files | |
| if: ${{ !cancelled() && steps.detect-changed-files.outcome == 'success' }} | |
| run: uv tool run osu-wiki-tools check-yaml --format github | |
| - name: find broken wikilinks | |
| if: ${{ !cancelled() && steps.detect-changed-files.outcome == 'success' }} | |
| continue-on-error: ${{ contains(github.event.pull_request.body, 'SKIP_WIKILINK_CHECK') }} | |
| run: uv tool run osu-wiki-tools check-links --all --format github |