Skip to content

Bump stylelint from 16.22.0 to 16.23.1 #177

Bump stylelint from 16.22.0 to 16.23.1

Bump stylelint from 16.22.0 to 16.23.1 #177

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash -l {0}
env:
CACHE_NAME: node-modules-cache
jobs:
Install-Lint-Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci --verbose
- name: Run linters
run: npm run lint
- name: Test
run: npm test