Skip to content

build(deps): bump prettier-plugin-tailwindcss from 0.8.0 to 0.8.1 #2030

build(deps): bump prettier-plugin-tailwindcss from 0.8.0 to 0.8.1

build(deps): bump prettier-plugin-tailwindcss from 0.8.0 to 0.8.1 #2030

Workflow file for this run

name: CI
permissions:
contents: read
on:
pull_request:
merge_group:
push:
branches:
- main
- beta
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install
uses: ./.github/composite-actions/install
- name: Run commitlint check
if: always()
run: npx commitlint -f ${{ github.event.pull_request.base.sha }}
- name: Run ESLint check
if: always()
run: npm run lint
- name: Run Prettier check
if: always()
run: npm run format
- name: Check types
if: always()
run: npm run typecheck
- name: Check dead code
if: always()
run: npm run knip