chore(deps): bump the npm group with 62 updates #622
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: StyleLint | |
| on: | |
| # Runs on pushes targeting the default branch | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: stylelint-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| linters: | |
| name: stylelint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout Repo Code | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Run StyleLint | |
| uses: Nick2bad4u/stylelint@bac953a3225dbed8bfafd5e66b274983892d434d # master |