Skip to content

Bump stylelint from 16.10.0 to 16.11.0 #839

Bump stylelint from 16.10.0 to 16.11.0

Bump stylelint from 16.10.0 to 16.11.0 #839

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: |
yarn install
- name: Build
run: |
yarn build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: |
yarn install
- name: Lint
run: |
yarn run lint --no-fix --max-warnings 0 --format stylish