Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

build(deps): bump stylelint-order from 7.0.1 to 8.1.1 #159

build(deps): bump stylelint-order from 7.0.1 to 8.1.1

build(deps): bump stylelint-order from 7.0.1 to 8.1.1 #159

Workflow file for this run

name: Main
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
run_install: false
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: pnpm
cache-dependency-path: '**/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
timeout-minutes: 5
- name: Review dependencies
if: github.event_name == 'pull_request'
uses: actions/dependency-review-action@v4
- name: Lint pushed commit messages
if: github.event_name == 'push'
run: pnpm exec commitlint --from ${{ github.event.before }} --to ${{ github.sha }} --verbose
- name: Lint PR commit messages
if: github.event_name == 'pull_request'
run: pnpm exec commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Check formatting
run: pnpm run format:check