Skip to content

chore(deps): bump tailwind-merge from 3.4.0 to 3.5.0 #129

chore(deps): bump tailwind-merge from 3.4.0 to 3.5.0

chore(deps): bump tailwind-merge from 3.4.0 to 3.5.0 #129

Workflow file for this run

name: PR
on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: pr-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: make install
- name: Lint
run: make lint
continue-on-error: true
- name: TypeScript check
run: |
make prebuild
npx tsc --noEmit
continue-on-error: true
- name: Run tests
run: make test-ci
- name: Build
run: make build
- name: Check manifest is up-to-date
run: |
if ! git diff --exit-code configs-manifest.json; then
echo "❌ ERROR: configs-manifest.json is out of sync"
echo "Run 'make prebuild' and commit the changes"
exit 1
fi