Skip to content

Update dependency postcss to v8.4.47 #718

Update dependency postcss to v8.4.47

Update dependency postcss to v8.4.47 #718

Workflow file for this run

name: CI
on:
push:
tags: [v*.*.*]
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "./.nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: check code format
if: github.event_name != 'pull_request'
run: npm run format:check
- name: Format code
if: github.event_name == 'pull_request'
run: npm run format:fix
- name: Commit changes
if: github.event_name == 'pull_request'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Format code with prettier"
commit_options: "--no-verify"