dependabot[bot] is running Stylelint on code #216
This file contains 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 | |
run-name: ${{ github.actor }} is running Stylelint on code | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
types: [opened, reopened, edited, synchronize] | |
branches: ['*'] | |
permissions: read-all | |
jobs: | |
test: | |
name: Running Stylelint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # tag=v4.1.0 | |
- name: Setup node | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # tag=3.8.1 | |
with: | |
node-version: 18 | |
- name: Run Stylelint analysis | |
run: | | |
npm ci | |
npm run lint-styles |