Bump fast-xml-parser from 5.3.3 to 5.3.4 #2828
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: Lint | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.ref_name }}-lint | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Set Node.js | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: Install dependencies | |
| run: | | |
| corepack yarn install | |
| - name: Lint the code | |
| run: | | |
| corepack yarn run lint | |
| - name: Run format check | |
| run: | | |
| corepack yarn run format | |
| - name: Check for uncommitted changes | |
| run: | | |
| if [ "$(git diff --ignore-space-at-eol | wc -l)" -gt "0" ]; then | |
| echo "Detected uncommitted changes after linting. See status below:" | |
| git diff | |
| exit 1 | |
| fi | |
| actionlint: | |
| name: Actionlint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Lint Actions | |
| uses: reviewdog/action-actionlint@83e4ed25b168066ad8f62f5afbb29ebd8641d982 # v1.69.1 | |
| with: | |
| actionlint_flags: -shellcheck "" | |
| markdown-lint: | |
| name: Markdown Lint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Lint Markdown | |
| uses: DavidAnson/markdownlint-cli2-action@07035fd053f7be764496c0f8d8f9f41f98305101 # v22.0.0 | |
| with: | |
| config: .markdownlint-cli2.yaml | |
| globs: "**/*.md" | |
| fix: false | |
| yaml-lint: | |
| name: YAML lint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Lint YAML | |
| uses: reviewdog/action-yamllint@f01d8a48fd8d89f89895499fca2cff09f9e9e8c0 # v1.21.0 |