Skip to content

fix(css): remove global body color transition to prevent refresh flash #878

fix(css): remove global body color transition to prevent refresh flash

fix(css): remove global body color transition to prevent refresh flash #878

Workflow file for this run

name: linter
on:
push:
branches:
- develop
- main
- master
- workos
pull_request:
branches:
- develop
- main
- master
- workos
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # v2
with:
php-version: '8.4'
- name: Install Dependencies
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
npm install
- name: Check PHP Code Style (Pint)
run: composer lint:check
- name: Check Frontend Formatting (Prettier)
run: npm run format:check
- name: Lint Frontend (ESLint)
run: npm run lint:check