Bump vitepress-plugin-group-icons from 1.7.1 to 1.7.3 #103
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: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: "Lint" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| if: ${{ !contains(github.event.head_commit.message, '#nolint') }} | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v6 | |
| - name: "Debug event.json" | |
| continue-on-error: true | |
| run: cat "${GITHUB_EVENT_PATH}" | |
| - name: "Debug CTX github" | |
| continue-on-error: true | |
| env: | |
| GITHUB_CTX: ${{ toJSON(github) }} | |
| run: echo "$GITHUB_CTX" | |
| - name: "Debug Environment" | |
| continue-on-error: true | |
| run: env | |
| - name: "Setup Node 24" | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: "Install" | |
| run: | | |
| npm ci | |
| - name: "Build" | |
| if: ${{ !cancelled() }} | |
| run: | | |
| npm run build | |
| #- name: "esLint" | |
| # if: ${{ !cancelled() }} | |
| # run: | | |
| # npm run lint | |
| - name: "prettier" | |
| if: ${{ !cancelled() }} | |
| run: | | |
| npm run prettier:check | |
| - name: "yamllint" | |
| if: ${{ !cancelled() }} | |
| env: | |
| CONFIG: .github/yamllint.yaml | |
| run: | | |
| echo "::group::List Files" | |
| yamllint -c "${{ env.CONFIG }}" --list-files . | |
| echo "::endgroup::" | |
| yamllint -c "${{ env.CONFIG }}" . | |
| - name: "actionlint" | |
| if: ${{ !cancelled() }} | |
| uses: cssnr/actionlint-action@v1 | |
| with: | |
| shellcheck_opts: -e SC2129 |