Fixed issue with the WebFileData file path function so it now returns the webkitRelativePath instead of the file name #3060
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
| # Whenever an open PR is updated, the workflow will be triggered | |
| name: Language Linting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| branches: | |
| - main | |
| jobs: | |
| typos: | |
| if: github.event.pull_request.draft == false | |
| name: Check for typos | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Check for typos | |
| uses: crate-ci/typos@master | |
| # Check for invalid links in the repository | |
| link-check: | |
| if: github.event.pull_request.draft == false | |
| name: Check For Invalid Links | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Restore lychee cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: .lycheecache | |
| key: cache-lychee-${{ github.sha }} | |
| restore-keys: cache-lychee- | |
| - name: Run lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --config ./lychee.toml './**/*.md' | |
| fail: true |