Skip to content

Bump postcss from 8.5.15 to 8.5.23 #183

Bump postcss from 8.5.15 to 8.5.23

Bump postcss from 8.5.15 to 8.5.23 #183

Workflow file for this run

name: Prettier and linter
on:
pull_request:
branches: [master]
jobs:
prettier-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run prettier-check